From 3265d0678c27a8c0f6c1ed172cab95dc7fa59412 Mon Sep 17 00:00:00 2001 From: janzheng Date: Wed, 23 Jun 2021 08:40:06 -0400 Subject: [PATCH 01/24] asset getter --- src/api/notion.ts | 28 +++++++++++++++++++++++++++- src/index.ts | 4 +++- src/routes/asset.ts | 27 +++++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 src/routes/asset.ts diff --git a/src/api/notion.ts b/src/api/notion.ts index 4aa3927..9a23801 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -125,6 +125,32 @@ export const fetchBlocks = async ( }); }; + +export const fetchNotionAsset = async ( + fileUrl: string, + blockId: string, +) => { + return await fetchNotionData({ + resource: "getSignedFileUrls", + body: { + urls: [ + { + url: fileUrl, + permissionRecord: { + table: "block", + id: blockId + } + } + ] + }, + }); +}; + + + + + + export const fetchNotionSearch = async ( params: NotionSearchParamsType, notionToken?: string @@ -154,4 +180,4 @@ export const fetchNotionSearch = async ( }, notionToken, }); -}; +}; \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 435ad32..8dc028f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,6 +4,7 @@ import { Router, Method } from "tiny-request-router"; import { pageRoute } from "./routes/page"; import { tableRoute } from "./routes/table"; import { userRoute } from "./routes/user"; +import { assetRoute } from "./routes/asset"; import { searchRoute } from "./routes/search"; import { createResponse } from "./response"; import { getCacheKey } from "./get-cache-key"; @@ -26,12 +27,13 @@ router.get("/v1/page/:pageId", pageRoute); router.get("/v1/table/:pageId", tableRoute); router.get("/v1/user/:userId", userRoute); router.get("/v1/search", searchRoute); +router.get("/v1/asset", assetRoute); router.get("*", async () => createResponse( { error: `Route not found!`, - routes: ["/v1/page/:pageId", "/v1/table/:pageId", "/v1/user/:pageId"], + routes: ["/v1/page/:pageId", "/v1/table/:pageId", "/v1/user/:pageId", "/v1/asset?url=[filename]&blockId=[id]"], }, {}, 404 diff --git a/src/routes/asset.ts b/src/routes/asset.ts new file mode 100644 index 0000000..e01be81 --- /dev/null +++ b/src/routes/asset.ts @@ -0,0 +1,27 @@ +import { fetchNotionAsset } from "../api/notion"; +import { HandlerRequest } from "../api/types"; +import { createResponse } from "../response"; + +export async function assetRoute(req: HandlerRequest) { + + let url = new URL(req.request.url) + let fileUrl = url.searchParams.get('url') + let blockId = url.searchParams.get('blockId') + + if (!fileUrl || !blockId) + return createResponse( + { error: 'Please supply a file URL and block ID: asset?url=[file-url]&blockId=[block ID]' }, + { "Content-Type": "application/json" }, + 400 + ); + + console.log('getting', fileUrl, blockId) + const asset = await fetchNotionAsset(fileUrl, blockId); + + console.log('asset response:', asset) + return createResponse(asset); +} + + + +// http://127.0.0.1:8787/v1/asset?url=https://s3-us-west-2.amazonaws.com/secure.notion-static.com/7b07bcc5-c445-4646-92e7-80778396bf0f/fmicb-11-00397_(1).pdf&blockId=6cc938f5-76fc-4069-8315-d776778afc71 \ No newline at end of file From ae7a682ffb800b4c4b4ba72852bc06dfb7865723 Mon Sep 17 00:00:00 2001 From: janzheng Date: Wed, 23 Jun 2021 08:46:03 -0400 Subject: [PATCH 02/24] cleanup --- package.json | 1 + src/routes/asset.ts | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index ce21363..4fb55f9 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "build": "webpack", "dev": "wrangler dev", "preview": "wrangler preview", + "publish": "wrangler publish", "deploy": "wrangler publish -e production" }, "dependencies": { diff --git a/src/routes/asset.ts b/src/routes/asset.ts index e01be81..fe4b2a9 100644 --- a/src/routes/asset.ts +++ b/src/routes/asset.ts @@ -15,10 +15,8 @@ export async function assetRoute(req: HandlerRequest) { 400 ); - console.log('getting', fileUrl, blockId) const asset = await fetchNotionAsset(fileUrl, blockId); - console.log('asset response:', asset) return createResponse(asset); } From eedaccd01e2edd7cdbf8a38f11230c29e2f393b2 Mon Sep 17 00:00:00 2001 From: janzheng Date: Wed, 23 Jun 2021 08:47:15 -0400 Subject: [PATCH 03/24] cleanup --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 4fb55f9..b095468 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,12 @@ { "name": "notion-api-worker", - "version": "0.1.0", + "version": "0.1.1", "main": "dist/index.js", "license": "MIT", "scripts": { "build": "webpack", "dev": "wrangler dev", "preview": "wrangler preview", - "publish": "wrangler publish", "deploy": "wrangler publish -e production" }, "dependencies": { From 5b928630f6045d20b4f63cf7224e6c12afd40afa Mon Sep 17 00:00:00 2001 From: janzheng Date: Wed, 23 Jun 2021 08:47:41 -0400 Subject: [PATCH 04/24] cleanup --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b095468..ce21363 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notion-api-worker", - "version": "0.1.1", + "version": "0.1.0", "main": "dist/index.js", "license": "MIT", "scripts": { From 17d3be347002076f73b67c35ae5c3443934c0d44 Mon Sep 17 00:00:00 2001 From: janzheng Date: Wed, 23 Jun 2021 08:48:32 -0400 Subject: [PATCH 05/24] cleanup --- src/routes/asset.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/routes/asset.ts b/src/routes/asset.ts index fe4b2a9..8764c17 100644 --- a/src/routes/asset.ts +++ b/src/routes/asset.ts @@ -20,6 +20,3 @@ export async function assetRoute(req: HandlerRequest) { return createResponse(asset); } - - -// http://127.0.0.1:8787/v1/asset?url=https://s3-us-west-2.amazonaws.com/secure.notion-static.com/7b07bcc5-c445-4646-92e7-80778396bf0f/fmicb-11-00397_(1).pdf&blockId=6cc938f5-76fc-4069-8315-d776778afc71 \ No newline at end of file From 22998ae937d4001faeabc8da714772c1609fb535 Mon Sep 17 00:00:00 2001 From: janzheng Date: Fri, 25 Jun 2021 11:26:23 -0400 Subject: [PATCH 06/24] added file redirect endpoint --- src/api/notion.ts | 8 ++- src/index.ts | 4 ++ src/routes/collection.ts | 108 +++++++++++++++++++++++++++++++++++++++ src/routes/file.ts | 32 ++++++++++++ 4 files changed, 150 insertions(+), 2 deletions(-) create mode 100644 src/routes/collection.ts create mode 100644 src/routes/file.ts diff --git a/src/api/notion.ts b/src/api/notion.ts index 9a23801..73551b2 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -33,10 +33,13 @@ const fetchNotionData = async ({ "content-type": "application/json", ...(notionToken && { cookie: `token_v2=${notionToken}` }), }, + body: JSON.stringify(body), }); - - return res.json(); + + let json = await res.json() + // console.log('fetchNotionData:', json) + return json; }; export const fetchPageById = async (pageId: string, notionToken?: string) => { @@ -78,6 +81,7 @@ export const fetchTableData = async ( }, notionToken, }); + // console.log('fetchTableData:', table) return table; }; diff --git a/src/index.ts b/src/index.ts index 8dc028f..5419234 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,8 +3,10 @@ import { Router, Method } from "tiny-request-router"; import { pageRoute } from "./routes/page"; import { tableRoute } from "./routes/table"; +import { collectionRoute } from "./routes/collection"; import { userRoute } from "./routes/user"; import { assetRoute } from "./routes/asset"; +import { fileRoute } from "./routes/file"; import { searchRoute } from "./routes/search"; import { createResponse } from "./response"; import { getCacheKey } from "./get-cache-key"; @@ -25,9 +27,11 @@ const router = new Router(); router.options("*", () => new Response(null, { headers: corsHeaders })); router.get("/v1/page/:pageId", pageRoute); router.get("/v1/table/:pageId", tableRoute); +router.get("/v1/collection/:pageId", collectionRoute); router.get("/v1/user/:userId", userRoute); router.get("/v1/search", searchRoute); router.get("/v1/asset", assetRoute); +router.get("/v1/file", fileRoute); router.get("*", async () => createResponse( diff --git a/src/routes/collection.ts b/src/routes/collection.ts new file mode 100644 index 0000000..8c4ebe5 --- /dev/null +++ b/src/routes/collection.ts @@ -0,0 +1,108 @@ +import { fetchPageById, fetchTableData, fetchNotionUsers } from "../api/notion"; +import { parsePageId, getNotionValue } from "../api/utils"; +import { + RowContentType, + CollectionType, + RowType, + HandlerRequest, +} from "../api/types"; +import { createResponse } from "../response"; + +export const getCollectionData = async ( + collection: CollectionType, + collectionViewId: string, + notionToken?: string, + raw?: boolean +) => { + const table = await fetchTableData( + collection.value.id, + collectionViewId, + notionToken + ); + + + const collectionRows = collection.value.schema; + const collectionColKeys = Object.keys(collectionRows); + + const tableArr: RowType[] = table.result.blockIds.map( + (id: string) => table.recordMap.block[id] + ); + + const tableData = tableArr.filter( + (b) => + b.value && b.value.properties && b.value.parent_id === collection.value.id + ); + + type Row = { id: string;[key: string]: RowContentType }; + + const rows: Row[] = []; + + for (const td of tableData) { + let row: Row = { id: td.value.id }; + + for (const key of collectionColKeys) { + const val = td.value.properties[key]; + if (val) { + const schema = collectionRows[key]; + row[schema.name] = raw ? val : getNotionValue(val, schema.type, td); + if (schema.type === "person" && row[schema.name]) { + const users = await fetchNotionUsers(row[schema.name] as string[]); + row[schema.name] = users as any; + } + } + } + rows.push(row); + } + + const name: String = collection.value.name.join('') + + return { rows, schema: collectionRows, name }; +}; + + + + + + +export async function collectionRoute(req: HandlerRequest) { + const pageId = parsePageId(req.params.pageId); + const page = await fetchPageById(pageId!, req.notionToken); + + if (!page.recordMap.collection) + return createResponse( + JSON.stringify({ error: "No table found on Notion page: " + pageId }), + {}, + 401 + ); + + const collection = Object.keys(page.recordMap.collection).map( + (k) => page.recordMap.collection[k] + )[0]; + + const views: any[] = [] + + const collectionView: { + value: { id: CollectionType["value"]["id"] }; + } = Object.keys(page.recordMap.collection_view).map((k) => { + + views.push(page.recordMap.collection_view[k]['value']) + return page.recordMap.collection_view[k] + })[0]; + + const tableData = await getCollectionData( + collection, + collectionView.value.id, + req.notionToken + ); + + // console.log('table data:', JSON.stringify(collectionView.value)) + // console.log('view:', JSON.stringify(page.recordMap)) + + // clean up the table order + const tableProps = views[0].format.table_properties + tableProps.map((tableCol, i) => { + tableProps[i] = { ...tableProps[i], ...tableData.schema[tableCol['property']] } + }) + + return createResponse({ ...tableData, columns: tableProps, sort: views[0].page_sort, collection: collection }); +} diff --git a/src/routes/file.ts b/src/routes/file.ts new file mode 100644 index 0000000..b1d8cad --- /dev/null +++ b/src/routes/file.ts @@ -0,0 +1,32 @@ +import { fetchNotionAsset } from "../api/notion"; +import { HandlerRequest } from "../api/types"; +import { createResponse } from "../response"; + +export async function fileRoute(req: HandlerRequest) { + + let url = new URL(req.request.url) + let fileUrl = url.searchParams.get('url') + let blockId = url.searchParams.get('blockId') + + if (!fileUrl || !blockId) + return createResponse( + { error: 'Please supply a file URL and block ID: asset?url=[file-url]&blockId=[block ID]' }, + { "Content-Type": "application/json" }, + 400 + ); + + const asset:any = await fetchNotionAsset(fileUrl, blockId); + + if (asset && asset.signedUrls && asset.signedUrls[0]) + return Response.redirect( + asset.signedUrls[0], + 302 + ); + + return createResponse( + { error: 'File not found' }, + { "Content-Type": "application/json" }, + 400 + ); +} + From 02df2e97e6b6d1e9400f6a7476fee10a56e054e0 Mon Sep 17 00:00:00 2001 From: janzheng Date: Thu, 7 Oct 2021 14:47:40 -0400 Subject: [PATCH 07/24] collection fixes from Splitbee repo --- .ruby-version | 1 + package.json | 4 ++-- src/api/notion.ts | 28 +++++++++++++++++++++------- src/api/types.ts | 4 +++- src/index.ts | 3 +++ src/response.ts | 2 ++ src/routes/page.ts | 11 ++++++++--- src/routes/table.ts | 14 ++++++++++---- 8 files changed, 50 insertions(+), 17 deletions(-) create mode 100644 .ruby-version diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..aedc15b --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.5.3 diff --git a/package.json b/package.json index ce21363..428f874 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "notion-api-worker", - "version": "0.1.0", + "version": "0.1.", "main": "dist/index.js", "license": "MIT", "scripts": { "build": "webpack", "dev": "wrangler dev", "preview": "wrangler preview", - "deploy": "wrangler publish -e production" + "deploy": "wrangler publish" }, "dependencies": { "tiny-request-router": "^1.2.2" diff --git a/src/api/notion.ts b/src/api/notion.ts index 73551b2..e655530 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -56,14 +56,24 @@ export const fetchPageById = async (pageId: string, notionToken?: string) => { }; const queryCollectionBody = { - query: { aggregations: [{ property: "title", aggregator: "count" }] }, loader: { - type: "table", - limit: 999, + type: "reducer", + reducers: { + collection_group_results: { + type: "results", + limit: 999, + loadContentCover: true, + }, + "table:uncategorized:title:count": { + type: "aggregation", + aggregation: { + property: "title", + aggregator: "count", + }, + }, + }, searchQuery: "", userTimeZone: "Europe/Vienna", - userLocale: "en", - loadContentCover: true, }, }; @@ -75,8 +85,12 @@ export const fetchTableData = async ( const table = await fetchNotionData({ resource: "queryCollection", body: { - collectionId, - collectionViewId, + collection: { + id: collectionId, + }, + collectionView: { + id: collectionViewId, + }, ...queryCollectionBody, }, notionToken, diff --git a/src/api/types.ts b/src/api/types.ts index 0c77944..bb8b472 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -165,7 +165,9 @@ export interface CollectionData { }; }; result: { - blockIds: string[]; + reducerResults: { + collection_group_results: { blockIds: string[] }; + }; }; } diff --git a/src/index.ts b/src/index.ts index 5419234..96cf01c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,6 +20,8 @@ const corsHeaders = { "Access-Control-Allow-Origin": "*", "Access-Control-Allow-Headers": "*", "Access-Control-Allow-Methods": "GET, HEAD, POST, OPTIONS", + // "Cache-Control":`public, s-maxage=${30}, max-age=${60*60*0.1}, stale-while-revalidate=${60*4}`, + "Cache-Control":`public, s-maxage=${10}, max-age=${10}, stale-while-revalidate=${10}`, }; const router = new Router(); @@ -86,6 +88,7 @@ const handleRequest = async (fetchEvent: FetchEvent): Promise => { return res; }; + // console.log('responding ...') if (response) { fetchEvent.waitUntil(getResponseAndPersist()); return response; diff --git a/src/response.ts b/src/response.ts index 90caf91..d1bd041 100644 --- a/src/response.ts +++ b/src/response.ts @@ -11,6 +11,8 @@ export const createResponse = ( "Access-Control-Allow-Origin": "*", "Access-Control-Allow-Methods": "GET, OPTIONS", "Content-Type": "application/json", + // "Cache-Control":`public, s-maxage=${30}, max-age=${60*60*0.1}, stale-while-revalidate=${60*4}`, + "Cache-Control":`public, s-maxage=${10}, max-age=${10}, stale-while-revalidate=${10}`, ...headers, }, }); diff --git a/src/routes/page.ts b/src/routes/page.ts index 93b44dc..3508312 100644 --- a/src/routes/page.ts +++ b/src/routes/page.ts @@ -22,9 +22,12 @@ export async function pageRoute(req: HandlerRequest) { const block = allBlocks[blockId]; const content = block.value && block.value.content; - return content && block.value.type !== "page" - ? content.filter((id: string) => !allBlocks[id]) - : []; + if (!content || (block.value.type === "page" && blockId !== pageId!)) { + // skips pages other than the requested page + return []; + } + + return content.filter((id: string) => !allBlocks[id]); }); if (!pendingBlocks.length) { @@ -68,6 +71,8 @@ export async function pageRoute(req: HandlerRequest) { (k) => collPage.recordMap.collection_view[k] )[0]; + // console.log('>>>>> page getting table data') + const { rows, schema } = await getTableData( coll, collView.value.id, diff --git a/src/routes/table.ts b/src/routes/table.ts index bfc11af..67f7e75 100644 --- a/src/routes/table.ts +++ b/src/routes/table.ts @@ -23,7 +23,16 @@ export const getTableData = async ( const collectionRows = collection.value.schema; const collectionColKeys = Object.keys(collectionRows); - const tableArr: RowType[] = table.result.blockIds.map( + // console.log('>>>>> table block ids?!', table.result) + + type Row = { id: string; [key: string]: RowContentType }; + + const rows: Row[] = []; + + if(!table.result) // no tables + return { rows, schema: collectionRows }; + + const tableArr: RowType[] = table.result.reducerResults.collection_group_results.blockIds.map( (id: string) => table.recordMap.block[id] ); @@ -32,9 +41,6 @@ export const getTableData = async ( b.value && b.value.properties && b.value.parent_id === collection.value.id ); - type Row = { id: string; [key: string]: RowContentType }; - - const rows: Row[] = []; for (const td of tableData) { let row: Row = { id: td.value.id }; From 3173af999496cb207815847c800f41c523c120fb Mon Sep 17 00:00:00 2001 From: janzheng Date: Thu, 7 Oct 2021 15:10:32 -0400 Subject: [PATCH 08/24] fixed collection endpoint --- src/routes/collection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 8c4ebe5..436f3b9 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -24,7 +24,7 @@ export const getCollectionData = async ( const collectionRows = collection.value.schema; const collectionColKeys = Object.keys(collectionRows); - const tableArr: RowType[] = table.result.blockIds.map( + const tableArr: RowType[] = table.result.reducerResults.collection_group_results.blockIds.map( (id: string) => table.recordMap.block[id] ); From c90490133bc6af6b73a377785c4b6ceceb57d250 Mon Sep 17 00:00:00 2001 From: janzheng Date: Sun, 10 Oct 2021 23:34:12 -0400 Subject: [PATCH 09/24] catching null page IDs --- src/routes/page.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/routes/page.ts b/src/routes/page.ts index 3508312..67da67e 100644 --- a/src/routes/page.ts +++ b/src/routes/page.ts @@ -8,6 +8,15 @@ export async function pageRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); + if (!pageId || !page.recordMap) + console.error(`Page not found at [ID:${req.params.pageId}]`) + return createResponse( + JSON.stringify({ error: "No page found on Notion at: " + pageId }), + {}, + 401 + ); + + const baseBlocks = page.recordMap.block; let allBlocks: { [id: string]: BlockType & { collection?: any } } = { @@ -15,6 +24,8 @@ export async function pageRoute(req: HandlerRequest) { }; let allBlockKeys; + + while (true) { allBlockKeys = Object.keys(allBlocks); From b40de8a59084130d0ad5b3f7321e69f5c199ddb1 Mon Sep 17 00:00:00 2001 From: janzheng Date: Mon, 11 Oct 2021 08:49:10 -0400 Subject: [PATCH 10/24] oops --- package.json | 3 ++- src/routes/page.ts | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 428f874..dc5fd48 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "build": "webpack", "dev": "wrangler dev", "preview": "wrangler preview", - "deploy": "wrangler publish" + "deploy": "wrangler publish", + "prod": "wrangler publish" }, "dependencies": { "tiny-request-router": "^1.2.2" diff --git a/src/routes/page.ts b/src/routes/page.ts index 67da67e..5c042a7 100644 --- a/src/routes/page.ts +++ b/src/routes/page.ts @@ -8,13 +8,17 @@ export async function pageRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); - if (!pageId || !page.recordMap) + console.log('what?', req.params.pageId, page.recordMap) + + + if (!req.params.pageId) { console.error(`Page not found at [ID:${req.params.pageId}]`) return createResponse( JSON.stringify({ error: "No page found on Notion at: " + pageId }), {}, 401 ); + } const baseBlocks = page.recordMap.block; From 54d1498b4cf26ba579ce44a6aac191ea40af6354 Mon Sep 17 00:00:00 2001 From: janzheng Date: Fri, 15 Oct 2021 07:51:12 -0400 Subject: [PATCH 11/24] date support for ranges --- src/api/types.ts | 2 + src/api/utils.ts | 7 +- src/routes/collection.ts | 141 +++++++++++++++++++++++++++++++++++++-- src/routes/page.ts | 5 +- 4 files changed, 144 insertions(+), 11 deletions(-) diff --git a/src/api/types.ts b/src/api/types.ts index bb8b472..27069f0 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -45,6 +45,7 @@ export type ColumnType = export type ColumnSchemaType = { name: string; + options: string[]; type: ColumnType; }; @@ -56,6 +57,7 @@ export type RowContentType = | number | string[] | { title: string; id: string } + | { type:string, start_date:string, end_date?:string, end_time?:string, time_zone?: string, start_time?:string, date_format?:string } | UserType[] | DecorationType[] | { name: string; url: string }[]; diff --git a/src/api/utils.ts b/src/api/utils.ts index 71fd908..047ad49 100644 --- a/src/api/utils.ts +++ b/src/api/utils.ts @@ -34,8 +34,11 @@ export const getNotionValue = ( case "checkbox": return val[0][0] === "Yes"; case "date": - if (val[0][1]![0][0] === "d") return val[0]![1]![0]![1]!.start_date; - else return ""; + if (val[0][1]! && val[0][1]![0][0] === "d") { + return val[0]![1]![0]![1]; + } + else + return ""; case "title": return getTextContent(val); case "select": diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 436f3b9..890b0fa 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -33,7 +33,7 @@ export const getCollectionData = async ( b.value && b.value.properties && b.value.parent_id === collection.value.id ); - type Row = { id: string;[key: string]: RowContentType }; + type Row = { id: string; [key: string]: RowContentType }; const rows: Row[] = []; @@ -56,6 +56,9 @@ export const getCollectionData = async ( const name: String = collection.value.name.join('') + + + return { rows, schema: collectionRows, name }; }; @@ -64,6 +67,14 @@ export const getCollectionData = async ( + + + + + + + + export async function collectionRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); @@ -81,6 +92,8 @@ export async function collectionRoute(req: HandlerRequest) { const views: any[] = [] + + const collectionView: { value: { id: CollectionType["value"]["id"] }; } = Object.keys(page.recordMap.collection_view).map((k) => { @@ -100,9 +113,127 @@ export async function collectionRoute(req: HandlerRequest) { // clean up the table order const tableProps = views[0].format.table_properties - tableProps.map((tableCol, i) => { - tableProps[i] = { ...tableProps[i], ...tableData.schema[tableCol['property']] } - }) + if(tableProps) {// only table views have tableProps; galleries etc. don't + tableProps.map((tableCol:any, i:any) => { + tableProps[i] = { ...tableProps[i], ...tableData.schema[tableCol['property']] } + }) + } + + let query_filter = views[0]['query2'] ? views[0]['query2'].filter : undefined + let query_sort = views[0]['query2'] ? views[0]['query2'].sort : undefined + + + + + + + + // filters result array in place + const _filter = ({filter, property}: {filter:any, property:any}) => { + if(!filter) + return + + // property = column name + let _op = filter.operator // "string_contains" etc. + let _type = filter.value && filter.value.type // "exact" + let _text = filter.value && filter.value.value // text matching against; "filter text" + let column = tableProps.find(c=>c.property==property) + + switch (_op) { + case 'string_contains': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] &&row[column.name].includes(_text)) + break; + case 'string_is': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] == _text) + break; + case 'string_does_not_contain': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && !row[column.name].includes(_text)) + break; + case 'string_starts_with': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].startsWith(_text)) + break; + case 'string_ends_with': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].endsWith(_text)) + break; + case 'is_empty': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && (!row[column.name] || row[column.name] == '')) + break; + case 'is_not_empty': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name] !== '') + break; + case 'enum_is_not': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] !== _text) + break; + case 'enum_is': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] == _text) + break; + case 'enum_contains': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name].includes(_text)) + break; + case 'enum_does_not_contain': + tableData.rows = tableData.rows.filter(row=> { + return !row[column.name] || (!row[column.name].includes(_text)) + }) + break; + } + } + + + + + if(query_filter && query_filter.filters && query_filter.filters.length>0) { + let op = query_filter.operator + + query_filter.filters.map((filter:any)=>{ + _filter(filter) + }) + } + + + + + + + + + // return sorted data + // NOTE: sorting by A-Z doesn't always return the same results as Notion, since we're not sorting by block ID's position, just a-z + if(query_sort && query_sort.length>0) { + query_sort.map((qsort:any)=>{ + let column = tableProps.find((c:any)=>c.property==qsort.property) + if(column.type=='multi_select' || column.type=='select') { // sort by column options array rank of first item, rather than a-z + if(qsort.direction=='ascending') { + tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index + let _a = column.options.findIndex((e:any)=>e.value==a[column.name][0]) + let _b = column.options.findIndex((e:any)=>e.value==b[column.name][0]) + return _a < _b ? -1 : 1 + }) + } + else { + tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index + let _a = column.options.findIndex((e:any)=>e.value==a[column.name][0]) + let _b = column.options.findIndex((e:any)=>e.value==b[column.name][0]) + return _a > _b ? -1 : 1 + }) + } + } else { + if(qsort.direction=='ascending') { + // tableData.rows = tableData.rows.sort((a,b) => {console.log('>>',a[column.name],b[column.name], a[column.name] < b[column.name]); return a[column.name] < b[column.name] ? -1 : 1}) + tableData.rows = tableData.rows.sort((a,b) => a[column.name] > b[column.name] ? 1 : -1) + } else + tableData.rows = tableData.rows.sort((a,b) => a[column.name] < b[column.name] ? 1 : -1) + } + }) + } - return createResponse({ ...tableData, columns: tableProps, sort: views[0].page_sort, collection: collection }); + + return createResponse({ + ...tableData, + columns: tableProps, + collection: collection, + sort: views[0].page_sort, + query_filter, + query_sort, + views, + }); } diff --git a/src/routes/page.ts b/src/routes/page.ts index 5c042a7..8aede05 100644 --- a/src/routes/page.ts +++ b/src/routes/page.ts @@ -8,15 +8,12 @@ export async function pageRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); - console.log('what?', req.params.pageId, page.recordMap) - - if (!req.params.pageId) { console.error(`Page not found at [ID:${req.params.pageId}]`) return createResponse( JSON.stringify({ error: "No page found on Notion at: " + pageId }), {}, - 401 + 404 ); } From 141d591bb671d9e295130af78b6c205046499199 Mon Sep 17 00:00:00 2001 From: janzheng Date: Sun, 17 Oct 2021 12:51:25 -0400 Subject: [PATCH 12/24] bug fixes --- src/api/types.ts | 1 + src/routes/collection.ts | 19 ++++++++++++++----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/api/types.ts b/src/api/types.ts index 27069f0..094be5c 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -96,6 +96,7 @@ export interface RowType { value: { id: string; parent_id: string; + format: any; properties: { [key: string]: DecorationType[] }; }; } diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 890b0fa..665a74c 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -1,5 +1,7 @@ import { fetchPageById, fetchTableData, fetchNotionUsers } from "../api/notion"; import { parsePageId, getNotionValue } from "../api/utils"; +import { fetchNotionAsset } from "../api/notion"; + import { RowContentType, CollectionType, @@ -33,13 +35,13 @@ export const getCollectionData = async ( b.value && b.value.properties && b.value.parent_id === collection.value.id ); - type Row = { id: string; [key: string]: RowContentType }; + type Row = { id: string; format: any; [key: string]: RowContentType }; const rows: Row[] = []; - + const tds = [] for (const td of tableData) { - let row: Row = { id: td.value.id }; - + let row: Row = { id: td.value.id, format: td.value.format }; + tds.push(td) for (const key of collectionColKeys) { const val = td.value.properties[key]; if (val) { @@ -51,6 +53,13 @@ export const getCollectionData = async ( } } } + + if(row.format && row.format.page_cover) { + let asset:any = await fetchNotionAsset(row.format.page_cover, row.id) + if (asset && asset.url && asset.url.signedUrls && asset.url.signedUrls[0]) + row.format.page_cover = asset.url.signedUrls[0] + } + rows.push(row); } @@ -59,7 +68,7 @@ export const getCollectionData = async ( - return { rows, schema: collectionRows, name }; + return { rows, schema: collectionRows, name, tableArr}; }; From f1a9b45f29769bbc7c4fb1d46c38bdd8de3cb4db Mon Sep 17 00:00:00 2001 From: janzheng Date: Wed, 20 Oct 2021 07:33:52 -0400 Subject: [PATCH 13/24] addl support --- src/api/utils.ts | 7 ++++++- src/routes/collection.ts | 3 --- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/api/utils.ts b/src/api/utils.ts index 047ad49..3706328 100644 --- a/src/api/utils.ts +++ b/src/api/utils.ts @@ -26,6 +26,7 @@ export const getNotionValue = ( ): RowContentType => { switch (type) { case "text": + // return val; // includes formatted content like bold and anchors, but a pain to parse return getTextContent(val); case "person": return ( @@ -55,11 +56,15 @@ export const getNotionValue = ( .filter(([symbol]) => symbol === "‣") .map(([_, relation]) => relation![0][1] as string); case "file": + if(!val[0][1]) // file is embedded link + return [{'name': val[0][0].toString(), 'url': val[0][0].toString()}] + return val .filter((v) => v.length > 1) .map((v) => { - const rawUrl = v[1]![0][1] as string; + const rawUrl = v[1]![0][1] as string; + const url = new URL( `https://www.notion.so${ rawUrl.startsWith("/image") diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 665a74c..576b67b 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -64,9 +64,6 @@ export const getCollectionData = async ( } const name: String = collection.value.name.join('') - - - return { rows, schema: collectionRows, name, tableArr}; }; From 012b2c548a161266bb899912234787677ac1fdba Mon Sep 17 00:00:00 2001 From: janzheng Date: Thu, 21 Oct 2021 21:55:36 -0400 Subject: [PATCH 14/24] block route --- src/api/notion.ts | 1 - src/index.ts | 4 +++- src/routes/block.ts | 22 ++++++++++++++++++++++ 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 src/routes/block.ts diff --git a/src/api/notion.ts b/src/api/notion.ts index e655530..97291e1 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -38,7 +38,6 @@ const fetchNotionData = async ({ }); let json = await res.json() - // console.log('fetchNotionData:', json) return json; }; diff --git a/src/index.ts b/src/index.ts index 96cf01c..9a4c479 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,6 +6,7 @@ import { tableRoute } from "./routes/table"; import { collectionRoute } from "./routes/collection"; import { userRoute } from "./routes/user"; import { assetRoute } from "./routes/asset"; +import { blockRoute } from "./routes/block"; import { fileRoute } from "./routes/file"; import { searchRoute } from "./routes/search"; import { createResponse } from "./response"; @@ -33,13 +34,14 @@ router.get("/v1/collection/:pageId", collectionRoute); router.get("/v1/user/:userId", userRoute); router.get("/v1/search", searchRoute); router.get("/v1/asset", assetRoute); +router.get("/v1/block/:blockId", blockRoute); router.get("/v1/file", fileRoute); router.get("*", async () => createResponse( { error: `Route not found!`, - routes: ["/v1/page/:pageId", "/v1/table/:pageId", "/v1/user/:pageId", "/v1/asset?url=[filename]&blockId=[id]"], + routes: ["/v1/page/:pageId", "/v1/table/:pageId", "/v1/user/:pageId", "/v1/asset?url=[filename]&blockId=[id]", "/v1/:blockId"], }, {}, 404 diff --git a/src/routes/block.ts b/src/routes/block.ts new file mode 100644 index 0000000..eb62705 --- /dev/null +++ b/src/routes/block.ts @@ -0,0 +1,22 @@ +import { fetchBlocks } from "../api/notion"; +import { parsePageId } from "../api/utils"; +import { HandlerRequest } from "../api/types"; +import { createResponse } from "../response"; + +export async function blockRoute(req: HandlerRequest) { + const blockId = parsePageId(req.params.blockId); + + if (!blockId) + return createResponse( + { error: 'Please supply a block ID: block?blockId=[block ID]' }, + { "Content-Type": "application/json" }, + 400 + ); + + const block = await fetchBlocks([blockId], req.notionToken).then( + (res) => res.recordMap.block + ); + + return createResponse(block); +} + From 61113512b392cf2e783141afbb9ff7db0b01c312 Mon Sep 17 00:00:00 2001 From: janzheng Date: Sat, 30 Oct 2021 14:42:47 -0400 Subject: [PATCH 15/24] syncRecordValues API schema changed --- src/api/notion.ts | 43 ++++++++++++++++++++++++++----------------- src/index.ts | 4 +++- webpack.config.js | 1 - webpack.config_old.js | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 61 insertions(+), 19 deletions(-) create mode 100644 webpack.config_old.js diff --git a/src/api/notion.ts b/src/api/notion.ts index 97291e1..01cc543 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -1,3 +1,4 @@ + import { JSONData, NotionUserType, @@ -22,23 +23,32 @@ const loadPageChunkBody = { verticalColumns: false, }; +let ctr=0 + const fetchNotionData = async ({ resource, body, notionToken, }: INotionParams): Promise => { - const res = await fetch(`${NOTION_API}/${resource}`, { - method: "POST", - headers: { - "content-type": "application/json", - ...(notionToken && { cookie: `token_v2=${notionToken}` }), - }, - - body: JSON.stringify(body), - }); + try { + const res = await fetch(`${NOTION_API}/${resource}`, { + method: "POST", + headers: { + "content-type": "application/json", + "referer": "https://phagedirectory.notion.site/CUE-REDCap-eCRF-Data-Dictionary-Model-ca9b547e6ab5411e96c432024ed61b52", + "origin": "https://phagedirectory.notion.site", + ...(notionToken && { cookie: `token_v2=${notionToken}` }), + }, - let json = await res.json() - return json; + body: JSON.stringify(body), + }); + + let json = await res.json() + return json; + } catch(e) { + console.error('fetchNotionData error:', e) + throw new Error('Failed to pull data from Notion') + } }; export const fetchPageById = async (pageId: string, notionToken?: string) => { @@ -131,12 +141,11 @@ export const fetchBlocks = async ( return await fetchNotionData({ resource: "syncRecordValues", body: { - recordVersionMap: { - block: blockList.reduce((obj, blockId) => { - obj[blockId] = -1; - return obj; - }, {} as { [key: string]: -1 }), - }, + requests: blockList.map((id) => ({ + id, + table: "block", + version: -1, + })), }, notionToken, }); diff --git a/src/index.ts b/src/index.ts index 9a4c479..cb9c0a9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -99,7 +99,9 @@ const handleRequest = async (fetchEvent: FetchEvent): Promise => { return getResponseAndPersist(); }; + +// cloudflare workers entry self.addEventListener("fetch", async (event: Event) => { const fetchEvent = event as FetchEvent; fetchEvent.respondWith(handleRequest(fetchEvent)); -}); +}); \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index 4930d2a..332d637 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -23,7 +23,6 @@ module.exports = { transpileOnly: true, }, }, - { enforce: "pre", test: /\.js$/, loader: "source-map-loader" }, ], }, optimization: { diff --git a/webpack.config_old.js b/webpack.config_old.js new file mode 100644 index 0000000..4930d2a --- /dev/null +++ b/webpack.config_old.js @@ -0,0 +1,32 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const path = require("path"); + +const mode = process.env.NODE_ENV || "production"; + +module.exports = { + output: { + filename: `worker.${mode}.js`, + path: path.join(__dirname, "dist"), + }, + target: "webworker", + devtool: "source-map", + mode, + resolve: { + extensions: [".ts", ".js"], + }, + module: { + rules: [ + { + test: /\.tsx?$/, + loader: "ts-loader", + options: { + transpileOnly: true, + }, + }, + { enforce: "pre", test: /\.js$/, loader: "source-map-loader" }, + ], + }, + optimization: { + usedExports: true, + }, +}; From fe96086c461f5f0c24b7e0d64161f00808fe00c1 Mon Sep 17 00:00:00 2001 From: janzheng Date: Mon, 29 Nov 2021 18:51:33 -0500 Subject: [PATCH 16/24] sneaky sorting bug for null vals --- src/routes/collection.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 576b67b..1f869c4 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -129,6 +129,7 @@ export async function collectionRoute(req: HandlerRequest) { let query_sort = views[0]['query2'] ? views[0]['query2'].sort : undefined + console.log('?!?!?!', query_sort) @@ -208,17 +209,18 @@ export async function collectionRoute(req: HandlerRequest) { query_sort.map((qsort:any)=>{ let column = tableProps.find((c:any)=>c.property==qsort.property) if(column.type=='multi_select' || column.type=='select') { // sort by column options array rank of first item, rather than a-z + if(qsort.direction=='ascending') { tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index - let _a = column.options.findIndex((e:any)=>e.value==a[column.name][0]) - let _b = column.options.findIndex((e:any)=>e.value==b[column.name][0]) + let _a = column.options.findIndex((e:any)=>e.value==a[column.name] && a[column.name][0]) + let _b = column.options.findIndex((e:any)=>e.value==b[column.name] && b[column.name][0]) return _a < _b ? -1 : 1 }) } else { tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index - let _a = column.options.findIndex((e:any)=>e.value==a[column.name][0]) - let _b = column.options.findIndex((e:any)=>e.value==b[column.name][0]) + let _a = column.options.findIndex((e:any)=>e.value==a[column.name] && a[column.name][0]) + let _b = column.options.findIndex((e:any)=>e.value==b[column.name] && b[column.name][0]) return _a > _b ? -1 : 1 }) } From d52ae96df4ddbd0c40a537501e46f6d2229f0429 Mon Sep 17 00:00:00 2001 From: janzheng Date: Fri, 6 May 2022 07:47:59 +1000 Subject: [PATCH 17/24] cache and rate fix --- src/api/notion.ts | 90 ++++++++++++++++++++++++---------------- src/index.ts | 23 +++++++--- src/routes/collection.ts | 4 +- webpack.config.js | 1 - webpack.config_old.js | 32 ++++++++++++++ 5 files changed, 106 insertions(+), 44 deletions(-) create mode 100644 webpack.config_old.js diff --git a/src/api/notion.ts b/src/api/notion.ts index 97291e1..ab5752a 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -1,3 +1,4 @@ + import { JSONData, NotionUserType, @@ -22,23 +23,34 @@ const loadPageChunkBody = { verticalColumns: false, }; +let ctr=0 + +const delay = ms => new Promise(resolve => setTimeout(resolve, ms)); + const fetchNotionData = async ({ resource, body, notionToken, }: INotionParams): Promise => { - const res = await fetch(`${NOTION_API}/${resource}`, { - method: "POST", - headers: { - "content-type": "application/json", - ...(notionToken && { cookie: `token_v2=${notionToken}` }), - }, - - body: JSON.stringify(body), - }); + try { + console.log('------ fetching notion data?', resource, body, ctr++) + const res = await fetch(`${NOTION_API}/${resource}`, { + method: "POST", + headers: { + "content-type": "application/json", + ...(notionToken && { cookie: `token_v2=${notionToken}` }), + }, - let json = await res.json() - return json; + body: JSON.stringify(body), + }); + + let json = await res.json() + // await delay(1000); + return json; + } catch(e) { + console.error('fetchNotionData error:', e, e.message) + throw new Error('Failed to pull data from Notion') + } }; export const fetchPageById = async (pageId: string, notionToken?: string) => { @@ -102,25 +114,25 @@ export const fetchNotionUsers = async ( userIds: string[], notionToken?: string ) => { - const users = await fetchNotionData<{ results: NotionUserType[] }>({ - resource: "getRecordValues", - body: { - requests: userIds.map((id) => ({ id, table: "notion_user" })), - }, - notionToken, - }); - if (users && users.results) { - return users.results.map((u) => { - const user = { - id: u.value.id, - firstName: u.value.given_name, - lastLame: u.value.family_name, - fullName: u.value.given_name + " " + u.value.family_name, - profilePhoto: u.value.profile_photo, - }; - return user; - }); - } + // const users = await fetchNotionData<{ results: NotionUserType[] }>({ + // resource: "getRecordValues", + // body: { + // requests: userIds.map((id) => ({ id, table: "notion_user" })), + // }, + // notionToken, + // }); + // if (users && users.results) { + // return users.results.map((u) => { + // const user = { + // id: u.value.id, + // firstName: u.value.given_name, + // lastLame: u.value.family_name, + // fullName: u.value.given_name + " " + u.value.family_name, + // profilePhoto: u.value.profile_photo, + // }; + // return user; + // }); + // } return []; }; @@ -131,12 +143,18 @@ export const fetchBlocks = async ( return await fetchNotionData({ resource: "syncRecordValues", body: { - recordVersionMap: { - block: blockList.reduce((obj, blockId) => { - obj[blockId] = -1; - return obj; - }, {} as { [key: string]: -1 }), - }, + // recordVersionMap: { + // block: blockList.reduce((obj, blockId) => { + // obj[blockId] = -1; + // return obj; + // }, {} as { [key: string]: -1 }), + // }, + + requests: blockList.map((id) => ({ + id, + table: "block", + version: -1, + })), }, notionToken, }); diff --git a/src/index.ts b/src/index.ts index 9a4c479..690d4ba 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -import {} from "@cloudflare/workers-types"; +// import {} from "@cloudflare/workers-types"; import { Router, Method } from "tiny-request-router"; import { pageRoute } from "./routes/page"; @@ -48,9 +48,22 @@ router.get("*", async () => ) ); -const cache = (caches as any).default; -const NOTION_API_TOKEN = - typeof NOTION_TOKEN !== "undefined" ? NOTION_TOKEN : undefined; + + + +// const match = router.match('GET' as Method, '/foobar') +// if (match) { +// // Call the async function of that match +// const response = await match.handler() +// console.log(response) // => Response('Hello') +// } + + + +//cf-only cache +const cache = undefined; // (caches as any).default; +const NOTION_API_TOKEN = process.env.NOTION_TOKEN // not implemented yet — use .env later + // typeof env.NOTION_TOKEN !== "undefined" ? NOTION_TOKEN : undefined; const handleRequest = async (fetchEvent: FetchEvent): Promise => { const request = fetchEvent.request; @@ -83,7 +96,7 @@ const handleRequest = async (fetchEvent: FetchEvent): Promise => { notionToken, }); - if (cacheKey) { + if (cache && cacheKey) { await cache.put(cacheKey, res.clone()); } diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 576b67b..2bb2a3e 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -143,7 +143,7 @@ export async function collectionRoute(req: HandlerRequest) { let _op = filter.operator // "string_contains" etc. let _type = filter.value && filter.value.type // "exact" let _text = filter.value && filter.value.value // text matching against; "filter text" - let column = tableProps.find(c=>c.property==property) + let column = tableProps.find((c: any)=>c.property==property) switch (_op) { case 'string_contains': @@ -177,7 +177,7 @@ export async function collectionRoute(req: HandlerRequest) { tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name].includes(_text)) break; case 'enum_does_not_contain': - tableData.rows = tableData.rows.filter(row=> { + tableData.rows = tableData.rows.filter((row: any)=> { return !row[column.name] || (!row[column.name].includes(_text)) }) break; diff --git a/webpack.config.js b/webpack.config.js index 4930d2a..332d637 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -23,7 +23,6 @@ module.exports = { transpileOnly: true, }, }, - { enforce: "pre", test: /\.js$/, loader: "source-map-loader" }, ], }, optimization: { diff --git a/webpack.config_old.js b/webpack.config_old.js new file mode 100644 index 0000000..4930d2a --- /dev/null +++ b/webpack.config_old.js @@ -0,0 +1,32 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const path = require("path"); + +const mode = process.env.NODE_ENV || "production"; + +module.exports = { + output: { + filename: `worker.${mode}.js`, + path: path.join(__dirname, "dist"), + }, + target: "webworker", + devtool: "source-map", + mode, + resolve: { + extensions: [".ts", ".js"], + }, + module: { + rules: [ + { + test: /\.tsx?$/, + loader: "ts-loader", + options: { + transpileOnly: true, + }, + }, + { enforce: "pre", test: /\.js$/, loader: "source-map-loader" }, + ], + }, + optimization: { + usedExports: true, + }, +}; From 667f8dba641be26fff78bcb6d1bf0ac39eaeea4d Mon Sep 17 00:00:00 2001 From: janzheng Date: Fri, 10 Jun 2022 09:12:53 +1000 Subject: [PATCH 18/24] fix --- src/routes/collection.ts | 5 +---- src/routes/table.ts | 8 ++++---- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 1f869c4..e82a96f 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -129,10 +129,7 @@ export async function collectionRoute(req: HandlerRequest) { let query_sort = views[0]['query2'] ? views[0]['query2'].sort : undefined - console.log('?!?!?!', query_sort) - - - + // console.log('?!?!?!', query_sort) // filters result array in place diff --git a/src/routes/table.ts b/src/routes/table.ts index 67f7e75..18b0b86 100644 --- a/src/routes/table.ts +++ b/src/routes/table.ts @@ -50,10 +50,10 @@ export const getTableData = async ( if (val) { const schema = collectionRows[key]; row[schema.name] = raw ? val : getNotionValue(val, schema.type, td); - if (schema.type === "person" && row[schema.name]) { - const users = await fetchNotionUsers(row[schema.name] as string[]); - row[schema.name] = users as any; - } + // if (schema.type === "person" && row[schema.name]) { + // const users = await fetchNotionUsers(row[schema.name] as string[]); + // row[schema.name] = users as any; + // } } } rows.push(row); From 300c08777b5d0428a4d8625f4e1c397e105b8ddf Mon Sep 17 00:00:00 2001 From: janzheng Date: Fri, 10 Jun 2022 13:52:18 +1000 Subject: [PATCH 19/24] formatted text from collections --- src/api/utils.ts | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/api/utils.ts b/src/api/utils.ts index 3706328..8967569 100644 --- a/src/api/utils.ts +++ b/src/api/utils.ts @@ -27,7 +27,8 @@ export const getNotionValue = ( switch (type) { case "text": // return val; // includes formatted content like bold and anchors, but a pain to parse - return getTextContent(val); + // return getTextContent(val); + return getFormattedTextContent(val); case "person": return ( val.filter((v) => v.length > 1).map((v) => v[1]![0][1] as string) || [] @@ -88,3 +89,31 @@ export const getNotionValue = ( const getTextContent = (text: DecorationType[]) => { return text.reduce((prev, current) => prev + current[0], ""); }; + + +const getFormattedTextContent = (text: DecorationType[]) => { + // console.log('---text:', text[0]) + // return text.reduce((prev, current) => { + // console.log('p/c', prev, current) + // return prev + current[0]}, ""); + const newtext = text + .map(text => + text[1] + ? text[1].reduceRight( + (av, cv) => + ({ + i: `${av}`, + c: `${av}`, + s: `${av}`, + b: `${av}`, + h: `${av}`, + a: `${av}`, + }[cv[0]]), + text[0] + ) + : text[0] + ) + .join('') + + return newtext +}; From e60e0a5d79e37d3b45caa6619dcf0474cdfb5089 Mon Sep 17 00:00:00 2001 From: Jan Zheng Date: Mon, 17 Jul 2023 01:18:11 +1000 Subject: [PATCH 20/24] =?UTF-8?q?page=20and=20collections=E2=80=99=20colle?= =?UTF-8?q?ction=20renderers=20now=20find=20the=20collection=20id=20based?= =?UTF-8?q?=20on=20View;=20previously=20it=20just=20got=20the=20first=20it?= =?UTF-8?q?em=20in=20the=20collection,=20which=20wouldn=E2=80=99t=20work?= =?UTF-8?q?=20with=20linked=20database=20views?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...7f99d9005f25f2a4994cd739dd00023b96775529cc | 1 + ...8fae271da9b327e5e9ea44212700023c6e9ef71a80 | 1 + ...0166b022298eda6d242693696000023b96bc896e86 | 1 + ...babac6b3291a2b3e7154af080f00023b96c328d7e6 | 1 + ...562fddbb458a412a7b596bc03900004f79820dd5ac | 1 + ...8d628f639c0b8458643bb12ed900004f59472e8966 | 1 + ...fcb8f070a85e36d1691627cc1b00004f5947417b33 | 1 + ...837de2712d7c40305577fd5e4400023b96aafcbde4 | 1 + ...99f38265d16f655b2859a099b600004759d03e9067 | 1 + ...7c083f576fbca61fa0b2fbc20a00023b96c2a468c3 | 1 + ...082aa74467f9ca0e85a753a7aa00004759c6f0e364 | 1 + ...e000c5fc148db74dfcd992d5d600004f5947771b93 | 1 + ...7c0f56c8c2d520084c45c5b57a00023b96c0165e4a | 1 + ...91dfc07d8f6885bc38f2bc876800023b96c2e5c8a0 | 1 + .wrangler/state/v3/cache/default/db.sqlite | Bin 0 -> 24576 bytes package.json | 4 +- src/api/types.ts | 1 + src/index.ts | 10 +- src/response.ts | 3 +- src/routes/collection.ts | 43 +- src/routes/page.ts | 76 +- src/routes/table.ts | 26 +- wrangler.example.toml | 5 +- yarn.lock | 735 +++++++++++++++++- 24 files changed, 861 insertions(+), 56 deletions(-) create mode 100644 .wrangler/state/v3/cache/default/blobs/20cb635d0160d82e02c94bf7a925c77c5896547f99d9005f25f2a4994cd739dd00023b96775529cc create mode 100644 .wrangler/state/v3/cache/default/blobs/475cc3d7e2d8c564bf020ba5850414de9e4b778fae271da9b327e5e9ea44212700023c6e9ef71a80 create mode 100644 .wrangler/state/v3/cache/default/blobs/5e959ef215cfb932bde3f44622b8a617bca6310166b022298eda6d242693696000023b96bc896e86 create mode 100644 .wrangler/state/v3/cache/default/blobs/6914ccb591f2625952f15abad8b7e60e151c26babac6b3291a2b3e7154af080f00023b96c328d7e6 create mode 100644 .wrangler/state/v3/cache/default/blobs/6c73ec32f8665032677104383c875dbf0a9205562fddbb458a412a7b596bc03900004f79820dd5ac create mode 100644 .wrangler/state/v3/cache/default/blobs/8f0e9a503b028cb3bc14be607754ef6a5ca70b8d628f639c0b8458643bb12ed900004f59472e8966 create mode 100644 .wrangler/state/v3/cache/default/blobs/92e7323e140f605f142d40da158dd8418567f3fcb8f070a85e36d1691627cc1b00004f5947417b33 create mode 100644 .wrangler/state/v3/cache/default/blobs/9660918d11d461a9b7b0d03b6b76e8df268d61837de2712d7c40305577fd5e4400023b96aafcbde4 create mode 100644 .wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 create mode 100644 .wrangler/state/v3/cache/default/blobs/b6a9606acbc5c7c1094bfe537cd4afdfb217b67c083f576fbca61fa0b2fbc20a00023b96c2a468c3 create mode 100644 .wrangler/state/v3/cache/default/blobs/b889be648455af7dccfef7263a7e3f94fe1d41082aa74467f9ca0e85a753a7aa00004759c6f0e364 create mode 100644 .wrangler/state/v3/cache/default/blobs/cc67626db70dee865410f1e99d5b9b7d001657e000c5fc148db74dfcd992d5d600004f5947771b93 create mode 100644 .wrangler/state/v3/cache/default/blobs/d406ffd796e6fef4d9e6f4e48795d41161b8687c0f56c8c2d520084c45c5b57a00023b96c0165e4a create mode 100644 .wrangler/state/v3/cache/default/blobs/e25c311421d1be8f9477576faf0d869063554b91dfc07d8f6885bc38f2bc876800023b96c2e5c8a0 create mode 100644 .wrangler/state/v3/cache/default/db.sqlite diff --git a/.wrangler/state/v3/cache/default/blobs/20cb635d0160d82e02c94bf7a925c77c5896547f99d9005f25f2a4994cd739dd00023b96775529cc b/.wrangler/state/v3/cache/default/blobs/20cb635d0160d82e02c94bf7a925c77c5896547f99d9005f25f2a4994cd739dd00023b96775529cc new file mode 100644 index 0000000..2eb134c --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/20cb635d0160d82e02c94bf7a925c77c5896547f99d9005f25f2a4994cd739dd00023b96775529cc @@ -0,0 +1 @@ +{"119d3a25-82a8-46e5-aacf-a6c43db755ca":{"value":{"id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","version":348,"type":"page","properties":{"title":[["[EVG23] Live Schedule"]]},"content":["688850b3-0f1b-467e-bf6c-e113c089bef2","c776cbe8-336d-4356-a3b6-2bc0034ba079","b51398c1-bc0d-46d7-b4c6-225d77e25fa3","74de0e45-7560-41b5-9339-06345cbc646c","0e21cc3c-ec6f-403b-884c-4ee7d37b3f64","cd2a3f76-bb1f-433b-a76d-6696946f2e74","858418a8-3da5-47d3-806c-3f37c6f168ef","95b74f6f-3b94-482a-90ca-16ec74230516","dfd715cb-9365-44be-805a-dc2d337687bd","d670a21e-d7a0-4df8-895f-4c17ad111b8b","69c54b4d-79c7-4534-bb9b-702ad932adef","e742e9dc-76d6-4eaf-bbfb-b5b276e0183f","fac3f005-cca6-4a9d-9544-39c3832e265a","160710ef-2c4d-4c25-81a7-bd3a1fd2e3fa"],"format":{"page_icon":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/0937fb95-60ee-4dc7-bf6d-3f329b2debc3/evg-framed.png","copied_from_pointer":{"id":"2261b897-101d-410d-8537-2b7a073a2b5a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"permissions":[{"role":"reader","type":"public_permission","added_timestamp":1679640502617}],"created_time":1679548210786,"last_edited_time":1689394270078,"parent_id":"2644b329-090a-4289-96bb-2ea741127e3d","parent_table":"block","alive":true,"copied_from":"2261b897-101d-410d-8537-2b7a073a2b5a","file_ids":["0937fb95-60ee-4dc7-bf6d-3f329b2debc3"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"688850b3-0f1b-467e-bf6c-e113c089bef2":{"value":{"id":"688850b3-0f1b-467e-bf6c-e113c089bef2","version":48,"type":"header","properties":{"title":[["Sunday, August 6"]]},"format":{"copied_from_pointer":{"id":"e043aac1-24e0-47a4-87a3-1df3b019a4da","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689379831111,"last_edited_time":1689389546522,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"e043aac1-24e0-47a4-87a3-1df3b019a4da","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"c776cbe8-336d-4356-a3b6-2bc0034ba079":{"value":{"id":"c776cbe8-336d-4356-a3b6-2bc0034ba079","version":314,"type":"text","properties":{"title":[["We are running two concurrent workshops for Sunday: choose one in the morning, and another one in the afternoon. "]]},"format":{"copied_from_pointer":{"id":"edb72a6e-2455-4bcd-bfba-60fc8ebd706c","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689379831112,"last_edited_time":1689389579278,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"edb72a6e-2455-4bcd-bfba-60fc8ebd706c","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b51398c1-bc0d-46d7-b4c6-225d77e25fa3":{"value":{"id":"b51398c1-bc0d-46d7-b4c6-225d77e25fa3","version":16,"type":"collection_view","properties":{"title":[[""]]},"view_ids":["ad3418da-0716-426f-8a4b-30d0dc797094"],"format":{"copied_from_pointer":{"id":"6fa8e5b6-bb59-44c4-9476-51bf59cc685e","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689388566629,"last_edited_time":1689391264298,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"6fa8e5b6-bb59-44c4-9476-51bf59cc685e","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Evergreen Working Schedule"]],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm"},{"width":218,"visible":true,"property":"R\\:D"},{"width":193,"visible":true,"property":"pjT:"},{"width":228,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":200,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["Quadram Institute, UK"]],"Speaker":[["Instructor: Evelien Adriaenssens"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Viromics: Viral community analysis with metagenomics"]]},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["TAILOR Labs, Baylor College of Medicine"]],"Speaker":[["Instructor: Justin Clark "]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["BBQ Welcome lunch at Evergreen"]]},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Speaker":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Genomics/PATRIC)"]]},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Affiliation":[["Phages for Global Health"]],"Speaker":[["Instructor: Tobi Nagel & Fran Hodges"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Biobanking)"]]},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"Session":[["Pre-conference workshop"]],"Time":[["6:30 PM - 8:30 PM"]],"Event":[["(TBC) Workshop Extension"]]},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["Informal Poster Session "]]},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Location":[["Purce Hall"]],"Session":[["Session 1: Plenary talks"]],"Event":[["Session 1: Plenary talks"]]},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:30 AM - 8:45 AM"]],"Event":[["Phagebiotics Welcome!"]]},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Martin Loessner"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:45 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Bacteriophages by design: tiny killers and smart detectives"]]},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Quadram Institute Bioscience"]],"Speaker":[["Evelien Adriaenssens"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["9:05 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["What’s going on with phage taxonomy and is it really necessary?"]]},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"Speaker":[["Chair: Teagan Brown & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 2: Ecology & Informatics I"]],"Event":[["Session 2: Ecology & Informatics I"]]},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"Speaker":[["Gary Trubl"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:25 AM - 9:45 AM"]],"Name of speaker":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Harvard Medical School"]],"Speaker":[["Sian Owen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:45 AM - 10:05 AM"]],"Name of speaker":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Location":[["CAB"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:05 AM - 10:25 AM"]],"Event":[["Break"]]},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Globe Institute, University of Copenhagen, Denmark"]],"Speaker":[["Thomas Sicheritz-Pontén"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:25 AM - 10:45 AM"]],"Name of speaker":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University at Buffalo"]],"Speaker":[["Kathryn Kauffman"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:45 AM - 11:05 AM"]],"Name of speaker":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the roles of phages in the oral microbiome"]]},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jan Zheng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:05 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phase Genomics, Inc."]],"Speaker":[["Benjamin Auch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:25 AM - 11:40 PM"]],"Name of speaker":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"Speaker":[["Yishay Pinto"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":[["Monday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 3: Phage defense"]],"Event":[["Session 3: Phage defense"]]},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Otago, New Zealand"]],"Speaker":[["Peter Fineran"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Anti-CRISPR strategies and their regulation"]]},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"Speaker":[["Franklin Nobrega"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Co-occurrence and synergism of anti-phage defence systems"]]},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, McMaster University, Hamilton, Canada"]],"Speaker":[["Leah Sather"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Biological Sciences"]],"Speaker":[["Thomas Todeschini"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Xu Peng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Time":[["2:25 PM - 2:45 PM"]],"Event":[["Break"]]},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"Speaker":[["Chair: Sandra Morales & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 4: Phage therapy I"]],"Event":[["Session 4: Phage therapy I"]]},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"Speaker":[["Scott Stibitz"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["2:45 PM - 3:05 PM"]],"Name of speaker":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phage Consulting, Sydney, New South Wales, Australia"]],"Speaker":[["Sandra Morales"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:05 PM - 3:20 PM"]],"Name of speaker":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy overview)"]]},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Queen Astrid Military Hospital, Belgium"]],"Speaker":[["Jean-Paul Pirnay"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:20 PM - 3:40 PM"]],"Name of speaker":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Belgium)"]]},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Yale University, USA"]],"Speaker":[["Benjamin Chan"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:40 PM - 3:55 PM"]],"Name of speaker":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience at Yale)"]]},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Austen Terwilliger"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:55 PM - 4:15 PM"]],"Name of speaker":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":[["Monday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["5:30 PM & 6:00 PM buses"]],"Event":[["Head to bus depot and go downtown to movie theater"]]},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"Speaker":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Location":[["Downtown Olympia"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:30 PM"]],"Event":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["9:30 PM, 10:15 PM, 11 PM buses"]],"Event":[["Buses back to Evergreen"]]},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"Speaker":[["Chair: Gina Suh & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 5: Phage therapy II"]],"Event":[["Session 5: Phage therapy II"]]},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":[["Tuesday"]],"Length of talk":[["10 min."]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:30 AM - 8:40 AM"]],"Event":[["Introduction to keynote"]]},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Diane Shader Smith"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:40 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Keynote TBA (Phage therapy patient/parent experience)"]]},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jessica Sacher"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["9:40 AM - 10:00 AM"]],"Name of speaker":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Toronto"]],"Speaker":[["Greg German"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:00 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Canada)"]]},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Speaker":[["Talk - Chris Shafer "]],"Accepted in airtable":[["No"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:40 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Patient experience)"]]},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":[["Tuesday"]],"Length of talk":[["5 min"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:55 AM - 11:00 AM"]],"Event":[["Introduction to keynote"]]},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["[Keynote] Steffanie Strathdee"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["11:00 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in San Diego)"]]},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Event":[["Session 6: Understanding & improving phage therapy"]]},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["Katrine Whiteson"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"Speaker":[["Sabrina Green"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"Speaker":[["Kevin Burke"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"Speaker":[["Tiffany Luong"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"Speaker":[["Magdalena Unterer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Rime Bioinformatics SAS, Palaiseau, France"]],"Speaker":[["Antoine Culot"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:25 PM - 2:40 PM "]],"Name of speaker":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Jiemin Du"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:40 PM - 2:55 PM"]],"Name of speaker":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["2:55 PM - 3:15 PM"]],"Event":[["Break"]]},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"Speaker":[["Susan Lehman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:15 PM - 3:35 PM"]],"Name of speaker":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"Speaker":[["Katarzyna Danis-Włodarczyk"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:35 PM - 3:50 PM"]],"Name of speaker":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"Speaker":[["Qingquan (Kevin) Chen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:50 PM - 4:05 PM"]],"Name of speaker":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"Speaker":[["Gregory Resch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:05 PM - 4:25 PM"]],"Name of speaker":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"Speaker":[["Paul Bollyky"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:25 PM - 4:45 PM"]],"Name of speaker":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":[["Tuesday"]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 7:00 PM"]],"Event":[["Informal Poster session "]]},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":[["Tuesday"]],"Length of talk":[["120 min"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"Speaker":[["Evergreen Chronology of Inspiration Panel"]],"Location":[["Purce Hall"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Celebration/Dancing"]]},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 7: Phage and the immune system"]],"Event":[["Session 7: Phage and the immune system"]]},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, USA"]],"Speaker":[["Dwayne Roach"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"Speaker":[["Krystyna Dabrowska"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:50 AM - 9:10 AM"]],"Name of speaker":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Philip Lauman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:10 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["College of Life and Environmental Sciences, University of Exeter"]],"Speaker":[["Meaghan Castledine"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:25 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Léa Zinsli"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:40 AM - 9:55 AM"]],"Name of speaker":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"Speaker":[["Thomas Smytheman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:55 AM - 10:15 AM"]],"Name of speaker":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Time":[["10:15 AM - 10:35 AM"]],"Event":[["Break"]]},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 8: Molecular phage biology I"]],"Event":[["Session 8: Molecular phage biology I"]]},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"Speaker":[["Vivek Mutalik"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:35 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Enea Maffei"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:55 AM - 11:10 AM"]],"Name of speaker":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Carmen Gu Liu"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:10 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"Speaker":[["Jordan Romeyer Dherbey"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:25 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":[["Wednesday"]],"Length of talk":[["10 min."]],"Affiliation":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"Speaker":[["Bani Mallick"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:40 AM - 11:50 AM"]],"Name of speaker":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":[["Wednesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"Speaker":[["Chair: Michael Koeris"]],"Location":[["Purce Hall"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Event":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Speaker":[["Michael Koeris"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["PhagePro, Inc"]],"Speaker":[["Minmin Yen"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Locus Biosciences"]],"Speaker":[["Nick Conley"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Dominic Sauvageau"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"Session":[["Social/Fun!"]],"Time":[["2:05 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":[["Wednesday"]],"Location":[["TBA"]],"Session":[["Food!"]],"Time":[["5:00 PM - 7:00 PM"]],"Event":[["Dinner (TBA)"]]},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"Session":[["Poster Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["Formal Poster Session/Mixer I"]]},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:30 PM - ?"]],"Event":[["Phage sculpture building"]]},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Dancing "]]},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 10: Ecology & Informatics II"]],"Event":[["Session 10: Ecology & Informatics II"]]},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Speaker":[["Ryan Cook"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage ecology)"]]},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Leicester"]],"Speaker":[["Sophie Harrison"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:50 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"Speaker":[["Michael Shamash"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:05 AM - 9:20 AM"]],"Name of speaker":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Martha Clokie"]],"Accepted in airtable":[["No"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:20 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA"]]},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"Speaker":[["Chair: Hany Anany & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 11: Phage in food and agriculture"]],"Event":[["Session 11: Phage in food and agriculture"]]},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["KU Leuven, Belgium"]],"Speaker":[["Jeroen Wagemans"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["10:40 AM - 11:00 AM"]],"Name of speaker":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Research Scientist"]],"Speaker":[["Hany Anany"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:00 AM - 11:20 AM"]],"Name of speaker":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"Speaker":[["Thomas Denes"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:20 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["SCIPHAGE"]],"Speaker":[["Viviana Clavijo"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 12: Molecular phage biology II"]],"Event":[["Session 12: Molecular phage biology II"]]},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"Speaker":[["Katharina Höfer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Janine Bowring"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"Speaker":[["Rebecca Quinn"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage tRNAs Subvert Host Resistance"]]},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"Speaker":[["Valentina Andrea Floccari"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, University of Idaho"]],"Speaker":[["Tracey Peters"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:05 PM - 2:20 PM"]],"Name of speaker":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Department of Medicine, McMaster University"]],"Speaker":[["Gayatri Nair"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:20 PM - 2:30 PM"]],"Name of speaker":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biasing Bacteriophage Behaviour"]]},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"Speaker":[["Jieting Lin"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:30 PM - 2:40 PM"]],"Name of speaker":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:40 PM - 2:55 PM"]],"Event":[["Closing Remarks / Future Meeting"]]},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Poster Session"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["Formal Poster Session/Mixer II "]]},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Location":[["Olympia"]],"Session":[["Social/Fun!"]],"Time":[["5 PM - 9:00 PM"]],"Event":[["Adventure out into Olympia for dinner and an evening on the water. "]]},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":[["Friday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"Session":[["Social/Fun!"]],"Event":[["Mt. Rainier hike!"]]}]}},"5e1865d3-8f75-4840-a7b3-cd2573f6424b":{"value":{"id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","version":727,"type":"collection_view_page","content":["f1a511bf-9f2b-451f-87b9-8a6a0ec5ddd4","15835ea7-91d7-4973-b3da-96c7d502e4f4"],"view_ids":["fb24f8e8-7c0e-4774-8d4f-6bec35029c13","d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","5537f8ba-2f92-467f-aca5-d43a0e59d6ab","be03b38d-8ecb-4ecf-84b2-d84948b9ed6f"],"collection_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","format":{"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"permissions":[{"role":"reader","type":"public_permission","added_timestamp":1689388092078}],"created_time":1687798566572,"last_edited_time":1689391321313,"parent_id":"4d03afb6-6c67-4f54-b16f-2f7aac903828","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"74de0e45-7560-41b5-9339-06345cbc646c":{"value":{"id":"74de0e45-7560-41b5-9339-06345cbc646c","version":33,"type":"header","properties":{"title":[["Monday, August 7"]]},"format":{"copied_from_pointer":{"id":"ccbbbe59-01c8-4645-a6f8-01eaea05d1e7","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689379831120,"last_edited_time":1689394207093,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"ccbbbe59-01c8-4645-a6f8-01eaea05d1e7","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"0e21cc3c-ec6f-403b-884c-4ee7d37b3f64":{"value":{"id":"0e21cc3c-ec6f-403b-884c-4ee7d37b3f64","version":4,"type":"collection_view","properties":{"title":[[""]]},"view_ids":["a07ccc3a-95f7-4aa4-8849-4d4236173c59"],"format":{"copied_from_pointer":{"id":"b51398c1-bc0d-46d7-b4c6-225d77e25fa3","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689393219952,"last_edited_time":1689393219955,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"b51398c1-bc0d-46d7-b4c6-225d77e25fa3","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Evergreen Working Schedule"]],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm"},{"width":218,"visible":true,"property":"R\\:D"},{"width":193,"visible":true,"property":"pjT:"},{"width":228,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":200,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["Quadram Institute, UK"]],"Speaker":[["Instructor: Evelien Adriaenssens"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Viromics: Viral community analysis with metagenomics"]]},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["TAILOR Labs, Baylor College of Medicine"]],"Speaker":[["Instructor: Justin Clark "]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["BBQ Welcome lunch at Evergreen"]]},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Speaker":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Genomics/PATRIC)"]]},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Affiliation":[["Phages for Global Health"]],"Speaker":[["Instructor: Tobi Nagel & Fran Hodges"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Biobanking)"]]},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"Session":[["Pre-conference workshop"]],"Time":[["6:30 PM - 8:30 PM"]],"Event":[["(TBC) Workshop Extension"]]},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["Informal Poster Session "]]},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Location":[["Purce Hall"]],"Session":[["Session 1: Plenary talks"]],"Event":[["Session 1: Plenary talks"]]},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:30 AM - 8:45 AM"]],"Event":[["Phagebiotics Welcome!"]]},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Martin Loessner"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:45 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Bacteriophages by design: tiny killers and smart detectives"]]},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Quadram Institute Bioscience"]],"Speaker":[["Evelien Adriaenssens"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["9:05 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["What’s going on with phage taxonomy and is it really necessary?"]]},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"Speaker":[["Chair: Teagan Brown & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 2: Ecology & Informatics I"]],"Event":[["Session 2: Ecology & Informatics I"]]},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"Speaker":[["Gary Trubl"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:25 AM - 9:45 AM"]],"Name of speaker":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Harvard Medical School"]],"Speaker":[["Sian Owen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:45 AM - 10:05 AM"]],"Name of speaker":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Location":[["CAB"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:05 AM - 10:25 AM"]],"Event":[["Break"]]},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Globe Institute, University of Copenhagen, Denmark"]],"Speaker":[["Thomas Sicheritz-Pontén"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:25 AM - 10:45 AM"]],"Name of speaker":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University at Buffalo"]],"Speaker":[["Kathryn Kauffman"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:45 AM - 11:05 AM"]],"Name of speaker":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the roles of phages in the oral microbiome"]]},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jan Zheng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:05 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phase Genomics, Inc."]],"Speaker":[["Benjamin Auch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:25 AM - 11:40 PM"]],"Name of speaker":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"Speaker":[["Yishay Pinto"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":[["Monday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 3: Phage defense"]],"Event":[["Session 3: Phage defense"]]},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Otago, New Zealand"]],"Speaker":[["Peter Fineran"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Anti-CRISPR strategies and their regulation"]]},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"Speaker":[["Franklin Nobrega"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Co-occurrence and synergism of anti-phage defence systems"]]},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, McMaster University, Hamilton, Canada"]],"Speaker":[["Leah Sather"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Biological Sciences"]],"Speaker":[["Thomas Todeschini"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Xu Peng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Time":[["2:25 PM - 2:45 PM"]],"Event":[["Break"]]},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"Speaker":[["Chair: Sandra Morales & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 4: Phage therapy I"]],"Event":[["Session 4: Phage therapy I"]]},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"Speaker":[["Scott Stibitz"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["2:45 PM - 3:05 PM"]],"Name of speaker":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phage Consulting, Sydney, New South Wales, Australia"]],"Speaker":[["Sandra Morales"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:05 PM - 3:20 PM"]],"Name of speaker":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy overview)"]]},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Queen Astrid Military Hospital, Belgium"]],"Speaker":[["Jean-Paul Pirnay"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:20 PM - 3:40 PM"]],"Name of speaker":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Belgium)"]]},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Yale University, USA"]],"Speaker":[["Benjamin Chan"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:40 PM - 3:55 PM"]],"Name of speaker":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience at Yale)"]]},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Austen Terwilliger"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:55 PM - 4:15 PM"]],"Name of speaker":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":[["Monday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["5:30 PM & 6:00 PM buses"]],"Event":[["Head to bus depot and go downtown to movie theater"]]},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"Speaker":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Location":[["Downtown Olympia"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:30 PM"]],"Event":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["9:30 PM, 10:15 PM, 11 PM buses"]],"Event":[["Buses back to Evergreen"]]},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"Speaker":[["Chair: Gina Suh & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 5: Phage therapy II"]],"Event":[["Session 5: Phage therapy II"]]},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":[["Tuesday"]],"Length of talk":[["10 min."]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:30 AM - 8:40 AM"]],"Event":[["Introduction to keynote"]]},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Diane Shader Smith"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:40 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Keynote TBA (Phage therapy patient/parent experience)"]]},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jessica Sacher"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["9:40 AM - 10:00 AM"]],"Name of speaker":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Toronto"]],"Speaker":[["Greg German"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:00 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Canada)"]]},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Speaker":[["Talk - Chris Shafer "]],"Accepted in airtable":[["No"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:40 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Patient experience)"]]},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":[["Tuesday"]],"Length of talk":[["5 min"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:55 AM - 11:00 AM"]],"Event":[["Introduction to keynote"]]},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["[Keynote] Steffanie Strathdee"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["11:00 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in San Diego)"]]},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Event":[["Session 6: Understanding & improving phage therapy"]]},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["Katrine Whiteson"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"Speaker":[["Sabrina Green"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"Speaker":[["Kevin Burke"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"Speaker":[["Tiffany Luong"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"Speaker":[["Magdalena Unterer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Rime Bioinformatics SAS, Palaiseau, France"]],"Speaker":[["Antoine Culot"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:25 PM - 2:40 PM "]],"Name of speaker":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Jiemin Du"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:40 PM - 2:55 PM"]],"Name of speaker":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["2:55 PM - 3:15 PM"]],"Event":[["Break"]]},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"Speaker":[["Susan Lehman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:15 PM - 3:35 PM"]],"Name of speaker":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"Speaker":[["Katarzyna Danis-Włodarczyk"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:35 PM - 3:50 PM"]],"Name of speaker":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"Speaker":[["Qingquan (Kevin) Chen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:50 PM - 4:05 PM"]],"Name of speaker":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"Speaker":[["Gregory Resch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:05 PM - 4:25 PM"]],"Name of speaker":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"Speaker":[["Paul Bollyky"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:25 PM - 4:45 PM"]],"Name of speaker":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":[["Tuesday"]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 7:00 PM"]],"Event":[["Informal Poster session "]]},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":[["Tuesday"]],"Length of talk":[["120 min"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"Speaker":[["Evergreen Chronology of Inspiration Panel"]],"Location":[["Purce Hall"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Celebration/Dancing"]]},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 7: Phage and the immune system"]],"Event":[["Session 7: Phage and the immune system"]]},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, USA"]],"Speaker":[["Dwayne Roach"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"Speaker":[["Krystyna Dabrowska"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:50 AM - 9:10 AM"]],"Name of speaker":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Philip Lauman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:10 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["College of Life and Environmental Sciences, University of Exeter"]],"Speaker":[["Meaghan Castledine"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:25 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Léa Zinsli"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:40 AM - 9:55 AM"]],"Name of speaker":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"Speaker":[["Thomas Smytheman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:55 AM - 10:15 AM"]],"Name of speaker":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Time":[["10:15 AM - 10:35 AM"]],"Event":[["Break"]]},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 8: Molecular phage biology I"]],"Event":[["Session 8: Molecular phage biology I"]]},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"Speaker":[["Vivek Mutalik"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:35 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Enea Maffei"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:55 AM - 11:10 AM"]],"Name of speaker":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Carmen Gu Liu"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:10 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"Speaker":[["Jordan Romeyer Dherbey"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:25 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":[["Wednesday"]],"Length of talk":[["10 min."]],"Affiliation":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"Speaker":[["Bani Mallick"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:40 AM - 11:50 AM"]],"Name of speaker":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":[["Wednesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"Speaker":[["Chair: Michael Koeris"]],"Location":[["Purce Hall"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Event":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Speaker":[["Michael Koeris"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["PhagePro, Inc"]],"Speaker":[["Minmin Yen"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Locus Biosciences"]],"Speaker":[["Nick Conley"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Dominic Sauvageau"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"Session":[["Social/Fun!"]],"Time":[["2:05 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":[["Wednesday"]],"Location":[["TBA"]],"Session":[["Food!"]],"Time":[["5:00 PM - 7:00 PM"]],"Event":[["Dinner (TBA)"]]},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"Session":[["Poster Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["Formal Poster Session/Mixer I"]]},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:30 PM - ?"]],"Event":[["Phage sculpture building"]]},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Dancing "]]},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 10: Ecology & Informatics II"]],"Event":[["Session 10: Ecology & Informatics II"]]},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Speaker":[["Ryan Cook"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage ecology)"]]},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Leicester"]],"Speaker":[["Sophie Harrison"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:50 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"Speaker":[["Michael Shamash"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:05 AM - 9:20 AM"]],"Name of speaker":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Martha Clokie"]],"Accepted in airtable":[["No"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:20 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA"]]},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"Speaker":[["Chair: Hany Anany & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 11: Phage in food and agriculture"]],"Event":[["Session 11: Phage in food and agriculture"]]},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["KU Leuven, Belgium"]],"Speaker":[["Jeroen Wagemans"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["10:40 AM - 11:00 AM"]],"Name of speaker":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Research Scientist"]],"Speaker":[["Hany Anany"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:00 AM - 11:20 AM"]],"Name of speaker":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"Speaker":[["Thomas Denes"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:20 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["SCIPHAGE"]],"Speaker":[["Viviana Clavijo"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 12: Molecular phage biology II"]],"Event":[["Session 12: Molecular phage biology II"]]},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"Speaker":[["Katharina Höfer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Janine Bowring"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"Speaker":[["Rebecca Quinn"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage tRNAs Subvert Host Resistance"]]},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"Speaker":[["Valentina Andrea Floccari"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, University of Idaho"]],"Speaker":[["Tracey Peters"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:05 PM - 2:20 PM"]],"Name of speaker":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Department of Medicine, McMaster University"]],"Speaker":[["Gayatri Nair"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:20 PM - 2:30 PM"]],"Name of speaker":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biasing Bacteriophage Behaviour"]]},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"Speaker":[["Jieting Lin"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:30 PM - 2:40 PM"]],"Name of speaker":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:40 PM - 2:55 PM"]],"Event":[["Closing Remarks / Future Meeting"]]},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Poster Session"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["Formal Poster Session/Mixer II "]]},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Location":[["Olympia"]],"Session":[["Social/Fun!"]],"Time":[["5 PM - 9:00 PM"]],"Event":[["Adventure out into Olympia for dinner and an evening on the water. "]]},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":[["Friday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"Session":[["Social/Fun!"]],"Event":[["Mt. Rainier hike!"]]}]}},"cd2a3f76-bb1f-433b-a76d-6696946f2e74":{"value":{"id":"cd2a3f76-bb1f-433b-a76d-6696946f2e74","version":29,"type":"header","properties":{"title":[["Tuesday, August 8"]]},"format":{"copied_from_pointer":{"id":"74de0e45-7560-41b5-9339-06345cbc646c","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689394191798,"last_edited_time":1689394200572,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"74de0e45-7560-41b5-9339-06345cbc646c","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"858418a8-3da5-47d3-806c-3f37c6f168ef":{"value":{"id":"858418a8-3da5-47d3-806c-3f37c6f168ef","version":23,"type":"collection_view","properties":{"title":[[""]]},"view_ids":["e635e65d-6464-4b05-a939-d9dedb713009"],"format":{"copied_from_pointer":{"id":"0e21cc3c-ec6f-403b-884c-4ee7d37b3f64","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689393271990,"last_edited_time":1689394140245,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"0e21cc3c-ec6f-403b-884c-4ee7d37b3f64","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Evergreen Working Schedule"]],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm"},{"width":218,"visible":true,"property":"R\\:D"},{"width":193,"visible":true,"property":"pjT:"},{"width":228,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":200,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["Quadram Institute, UK"]],"Speaker":[["Instructor: Evelien Adriaenssens"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Viromics: Viral community analysis with metagenomics"]]},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["TAILOR Labs, Baylor College of Medicine"]],"Speaker":[["Instructor: Justin Clark "]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["BBQ Welcome lunch at Evergreen"]]},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Speaker":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Genomics/PATRIC)"]]},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Affiliation":[["Phages for Global Health"]],"Speaker":[["Instructor: Tobi Nagel & Fran Hodges"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Biobanking)"]]},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"Session":[["Pre-conference workshop"]],"Time":[["6:30 PM - 8:30 PM"]],"Event":[["(TBC) Workshop Extension"]]},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["Informal Poster Session "]]},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Location":[["Purce Hall"]],"Session":[["Session 1: Plenary talks"]],"Event":[["Session 1: Plenary talks"]]},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:30 AM - 8:45 AM"]],"Event":[["Phagebiotics Welcome!"]]},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Martin Loessner"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:45 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Bacteriophages by design: tiny killers and smart detectives"]]},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Quadram Institute Bioscience"]],"Speaker":[["Evelien Adriaenssens"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["9:05 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["What’s going on with phage taxonomy and is it really necessary?"]]},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"Speaker":[["Chair: Teagan Brown & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 2: Ecology & Informatics I"]],"Event":[["Session 2: Ecology & Informatics I"]]},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"Speaker":[["Gary Trubl"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:25 AM - 9:45 AM"]],"Name of speaker":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Harvard Medical School"]],"Speaker":[["Sian Owen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:45 AM - 10:05 AM"]],"Name of speaker":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Location":[["CAB"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:05 AM - 10:25 AM"]],"Event":[["Break"]]},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Globe Institute, University of Copenhagen, Denmark"]],"Speaker":[["Thomas Sicheritz-Pontén"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:25 AM - 10:45 AM"]],"Name of speaker":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University at Buffalo"]],"Speaker":[["Kathryn Kauffman"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:45 AM - 11:05 AM"]],"Name of speaker":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the roles of phages in the oral microbiome"]]},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jan Zheng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:05 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phase Genomics, Inc."]],"Speaker":[["Benjamin Auch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:25 AM - 11:40 PM"]],"Name of speaker":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"Speaker":[["Yishay Pinto"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":[["Monday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 3: Phage defense"]],"Event":[["Session 3: Phage defense"]]},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Otago, New Zealand"]],"Speaker":[["Peter Fineran"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Anti-CRISPR strategies and their regulation"]]},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"Speaker":[["Franklin Nobrega"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Co-occurrence and synergism of anti-phage defence systems"]]},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, McMaster University, Hamilton, Canada"]],"Speaker":[["Leah Sather"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Biological Sciences"]],"Speaker":[["Thomas Todeschini"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Xu Peng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Time":[["2:25 PM - 2:45 PM"]],"Event":[["Break"]]},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"Speaker":[["Chair: Sandra Morales & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 4: Phage therapy I"]],"Event":[["Session 4: Phage therapy I"]]},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"Speaker":[["Scott Stibitz"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["2:45 PM - 3:05 PM"]],"Name of speaker":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phage Consulting, Sydney, New South Wales, Australia"]],"Speaker":[["Sandra Morales"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:05 PM - 3:20 PM"]],"Name of speaker":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy overview)"]]},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Queen Astrid Military Hospital, Belgium"]],"Speaker":[["Jean-Paul Pirnay"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:20 PM - 3:40 PM"]],"Name of speaker":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Belgium)"]]},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Yale University, USA"]],"Speaker":[["Benjamin Chan"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:40 PM - 3:55 PM"]],"Name of speaker":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience at Yale)"]]},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Austen Terwilliger"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:55 PM - 4:15 PM"]],"Name of speaker":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":[["Monday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["5:30 PM & 6:00 PM buses"]],"Event":[["Head to bus depot and go downtown to movie theater"]]},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"Speaker":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Location":[["Downtown Olympia"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:30 PM"]],"Event":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["9:30 PM, 10:15 PM, 11 PM buses"]],"Event":[["Buses back to Evergreen"]]},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"Speaker":[["Chair: Gina Suh & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 5: Phage therapy II"]],"Event":[["Session 5: Phage therapy II"]]},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":[["Tuesday"]],"Length of talk":[["10 min."]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:30 AM - 8:40 AM"]],"Event":[["Introduction to keynote"]]},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Diane Shader Smith"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:40 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Keynote TBA (Phage therapy patient/parent experience)"]]},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jessica Sacher"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["9:40 AM - 10:00 AM"]],"Name of speaker":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Toronto"]],"Speaker":[["Greg German"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:00 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Canada)"]]},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Speaker":[["Talk - Chris Shafer "]],"Accepted in airtable":[["No"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:40 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Patient experience)"]]},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":[["Tuesday"]],"Length of talk":[["5 min"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:55 AM - 11:00 AM"]],"Event":[["Introduction to keynote"]]},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["[Keynote] Steffanie Strathdee"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["11:00 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in San Diego)"]]},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Event":[["Session 6: Understanding & improving phage therapy"]]},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["Katrine Whiteson"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"Speaker":[["Sabrina Green"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"Speaker":[["Kevin Burke"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"Speaker":[["Tiffany Luong"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"Speaker":[["Magdalena Unterer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Rime Bioinformatics SAS, Palaiseau, France"]],"Speaker":[["Antoine Culot"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:25 PM - 2:40 PM "]],"Name of speaker":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Jiemin Du"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:40 PM - 2:55 PM"]],"Name of speaker":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["2:55 PM - 3:15 PM"]],"Event":[["Break"]]},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"Speaker":[["Susan Lehman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:15 PM - 3:35 PM"]],"Name of speaker":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"Speaker":[["Katarzyna Danis-Włodarczyk"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:35 PM - 3:50 PM"]],"Name of speaker":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"Speaker":[["Qingquan (Kevin) Chen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:50 PM - 4:05 PM"]],"Name of speaker":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"Speaker":[["Gregory Resch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:05 PM - 4:25 PM"]],"Name of speaker":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"Speaker":[["Paul Bollyky"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:25 PM - 4:45 PM"]],"Name of speaker":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":[["Tuesday"]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 7:00 PM"]],"Event":[["Informal Poster session "]]},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":[["Tuesday"]],"Length of talk":[["120 min"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"Speaker":[["Evergreen Chronology of Inspiration Panel"]],"Location":[["Purce Hall"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Celebration/Dancing"]]},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 7: Phage and the immune system"]],"Event":[["Session 7: Phage and the immune system"]]},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, USA"]],"Speaker":[["Dwayne Roach"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"Speaker":[["Krystyna Dabrowska"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:50 AM - 9:10 AM"]],"Name of speaker":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Philip Lauman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:10 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["College of Life and Environmental Sciences, University of Exeter"]],"Speaker":[["Meaghan Castledine"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:25 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Léa Zinsli"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:40 AM - 9:55 AM"]],"Name of speaker":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"Speaker":[["Thomas Smytheman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:55 AM - 10:15 AM"]],"Name of speaker":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Time":[["10:15 AM - 10:35 AM"]],"Event":[["Break"]]},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 8: Molecular phage biology I"]],"Event":[["Session 8: Molecular phage biology I"]]},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"Speaker":[["Vivek Mutalik"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:35 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Enea Maffei"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:55 AM - 11:10 AM"]],"Name of speaker":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Carmen Gu Liu"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:10 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"Speaker":[["Jordan Romeyer Dherbey"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:25 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":[["Wednesday"]],"Length of talk":[["10 min."]],"Affiliation":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"Speaker":[["Bani Mallick"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:40 AM - 11:50 AM"]],"Name of speaker":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":[["Wednesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"Speaker":[["Chair: Michael Koeris"]],"Location":[["Purce Hall"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Event":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Speaker":[["Michael Koeris"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["PhagePro, Inc"]],"Speaker":[["Minmin Yen"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Locus Biosciences"]],"Speaker":[["Nick Conley"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Dominic Sauvageau"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"Session":[["Social/Fun!"]],"Time":[["2:05 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":[["Wednesday"]],"Location":[["TBA"]],"Session":[["Food!"]],"Time":[["5:00 PM - 7:00 PM"]],"Event":[["Dinner (TBA)"]]},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"Session":[["Poster Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["Formal Poster Session/Mixer I"]]},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:30 PM - ?"]],"Event":[["Phage sculpture building"]]},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Dancing "]]},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 10: Ecology & Informatics II"]],"Event":[["Session 10: Ecology & Informatics II"]]},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Speaker":[["Ryan Cook"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage ecology)"]]},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Leicester"]],"Speaker":[["Sophie Harrison"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:50 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"Speaker":[["Michael Shamash"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:05 AM - 9:20 AM"]],"Name of speaker":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Martha Clokie"]],"Accepted in airtable":[["No"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:20 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA"]]},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"Speaker":[["Chair: Hany Anany & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 11: Phage in food and agriculture"]],"Event":[["Session 11: Phage in food and agriculture"]]},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["KU Leuven, Belgium"]],"Speaker":[["Jeroen Wagemans"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["10:40 AM - 11:00 AM"]],"Name of speaker":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Research Scientist"]],"Speaker":[["Hany Anany"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:00 AM - 11:20 AM"]],"Name of speaker":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"Speaker":[["Thomas Denes"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:20 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["SCIPHAGE"]],"Speaker":[["Viviana Clavijo"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 12: Molecular phage biology II"]],"Event":[["Session 12: Molecular phage biology II"]]},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"Speaker":[["Katharina Höfer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Janine Bowring"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"Speaker":[["Rebecca Quinn"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage tRNAs Subvert Host Resistance"]]},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"Speaker":[["Valentina Andrea Floccari"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, University of Idaho"]],"Speaker":[["Tracey Peters"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:05 PM - 2:20 PM"]],"Name of speaker":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Department of Medicine, McMaster University"]],"Speaker":[["Gayatri Nair"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:20 PM - 2:30 PM"]],"Name of speaker":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biasing Bacteriophage Behaviour"]]},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"Speaker":[["Jieting Lin"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:30 PM - 2:40 PM"]],"Name of speaker":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:40 PM - 2:55 PM"]],"Event":[["Closing Remarks / Future Meeting"]]},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Poster Session"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["Formal Poster Session/Mixer II "]]},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Location":[["Olympia"]],"Session":[["Social/Fun!"]],"Time":[["5 PM - 9:00 PM"]],"Event":[["Adventure out into Olympia for dinner and an evening on the water. "]]},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":[["Friday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"Session":[["Social/Fun!"]],"Event":[["Mt. Rainier hike!"]]}]}},"95b74f6f-3b94-482a-90ca-16ec74230516":{"value":{"id":"95b74f6f-3b94-482a-90ca-16ec74230516","version":39,"type":"header","properties":{"title":[["Wednesday, August 9"]]},"created_time":1689394217144,"last_edited_time":1689394249467,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"dfd715cb-9365-44be-805a-dc2d337687bd":{"value":{"id":"dfd715cb-9365-44be-805a-dc2d337687bd","version":4,"type":"collection_view","properties":{"title":[[""]]},"view_ids":["9ad3bf91-7f10-4dfe-ab07-dd15629805de"],"format":{"copied_from_pointer":{"id":"858418a8-3da5-47d3-806c-3f37c6f168ef","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689394158051,"last_edited_time":1689394158057,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"858418a8-3da5-47d3-806c-3f37c6f168ef","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Evergreen Working Schedule"]],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm"},{"width":218,"visible":true,"property":"R\\:D"},{"width":193,"visible":true,"property":"pjT:"},{"width":228,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":200,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["Quadram Institute, UK"]],"Speaker":[["Instructor: Evelien Adriaenssens"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Viromics: Viral community analysis with metagenomics"]]},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["TAILOR Labs, Baylor College of Medicine"]],"Speaker":[["Instructor: Justin Clark "]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["BBQ Welcome lunch at Evergreen"]]},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Speaker":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Genomics/PATRIC)"]]},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Affiliation":[["Phages for Global Health"]],"Speaker":[["Instructor: Tobi Nagel & Fran Hodges"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Biobanking)"]]},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"Session":[["Pre-conference workshop"]],"Time":[["6:30 PM - 8:30 PM"]],"Event":[["(TBC) Workshop Extension"]]},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["Informal Poster Session "]]},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Location":[["Purce Hall"]],"Session":[["Session 1: Plenary talks"]],"Event":[["Session 1: Plenary talks"]]},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:30 AM - 8:45 AM"]],"Event":[["Phagebiotics Welcome!"]]},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Martin Loessner"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:45 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Bacteriophages by design: tiny killers and smart detectives"]]},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Quadram Institute Bioscience"]],"Speaker":[["Evelien Adriaenssens"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["9:05 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["What’s going on with phage taxonomy and is it really necessary?"]]},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"Speaker":[["Chair: Teagan Brown & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 2: Ecology & Informatics I"]],"Event":[["Session 2: Ecology & Informatics I"]]},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"Speaker":[["Gary Trubl"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:25 AM - 9:45 AM"]],"Name of speaker":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Harvard Medical School"]],"Speaker":[["Sian Owen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:45 AM - 10:05 AM"]],"Name of speaker":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Location":[["CAB"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:05 AM - 10:25 AM"]],"Event":[["Break"]]},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Globe Institute, University of Copenhagen, Denmark"]],"Speaker":[["Thomas Sicheritz-Pontén"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:25 AM - 10:45 AM"]],"Name of speaker":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University at Buffalo"]],"Speaker":[["Kathryn Kauffman"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:45 AM - 11:05 AM"]],"Name of speaker":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the roles of phages in the oral microbiome"]]},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jan Zheng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:05 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phase Genomics, Inc."]],"Speaker":[["Benjamin Auch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:25 AM - 11:40 PM"]],"Name of speaker":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"Speaker":[["Yishay Pinto"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":[["Monday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 3: Phage defense"]],"Event":[["Session 3: Phage defense"]]},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Otago, New Zealand"]],"Speaker":[["Peter Fineran"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Anti-CRISPR strategies and their regulation"]]},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"Speaker":[["Franklin Nobrega"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Co-occurrence and synergism of anti-phage defence systems"]]},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, McMaster University, Hamilton, Canada"]],"Speaker":[["Leah Sather"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Biological Sciences"]],"Speaker":[["Thomas Todeschini"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Xu Peng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Time":[["2:25 PM - 2:45 PM"]],"Event":[["Break"]]},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"Speaker":[["Chair: Sandra Morales & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 4: Phage therapy I"]],"Event":[["Session 4: Phage therapy I"]]},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"Speaker":[["Scott Stibitz"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["2:45 PM - 3:05 PM"]],"Name of speaker":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phage Consulting, Sydney, New South Wales, Australia"]],"Speaker":[["Sandra Morales"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:05 PM - 3:20 PM"]],"Name of speaker":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy overview)"]]},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Queen Astrid Military Hospital, Belgium"]],"Speaker":[["Jean-Paul Pirnay"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:20 PM - 3:40 PM"]],"Name of speaker":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Belgium)"]]},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Yale University, USA"]],"Speaker":[["Benjamin Chan"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:40 PM - 3:55 PM"]],"Name of speaker":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience at Yale)"]]},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Austen Terwilliger"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:55 PM - 4:15 PM"]],"Name of speaker":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":[["Monday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["5:30 PM & 6:00 PM buses"]],"Event":[["Head to bus depot and go downtown to movie theater"]]},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"Speaker":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Location":[["Downtown Olympia"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:30 PM"]],"Event":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["9:30 PM, 10:15 PM, 11 PM buses"]],"Event":[["Buses back to Evergreen"]]},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"Speaker":[["Chair: Gina Suh & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 5: Phage therapy II"]],"Event":[["Session 5: Phage therapy II"]]},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":[["Tuesday"]],"Length of talk":[["10 min."]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:30 AM - 8:40 AM"]],"Event":[["Introduction to keynote"]]},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Diane Shader Smith"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:40 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Keynote TBA (Phage therapy patient/parent experience)"]]},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jessica Sacher"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["9:40 AM - 10:00 AM"]],"Name of speaker":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Toronto"]],"Speaker":[["Greg German"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:00 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Canada)"]]},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Speaker":[["Talk - Chris Shafer "]],"Accepted in airtable":[["No"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:40 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Patient experience)"]]},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":[["Tuesday"]],"Length of talk":[["5 min"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:55 AM - 11:00 AM"]],"Event":[["Introduction to keynote"]]},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["[Keynote] Steffanie Strathdee"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["11:00 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in San Diego)"]]},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Event":[["Session 6: Understanding & improving phage therapy"]]},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["Katrine Whiteson"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"Speaker":[["Sabrina Green"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"Speaker":[["Kevin Burke"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"Speaker":[["Tiffany Luong"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"Speaker":[["Magdalena Unterer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Rime Bioinformatics SAS, Palaiseau, France"]],"Speaker":[["Antoine Culot"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:25 PM - 2:40 PM "]],"Name of speaker":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Jiemin Du"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:40 PM - 2:55 PM"]],"Name of speaker":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["2:55 PM - 3:15 PM"]],"Event":[["Break"]]},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"Speaker":[["Susan Lehman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:15 PM - 3:35 PM"]],"Name of speaker":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"Speaker":[["Katarzyna Danis-Włodarczyk"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:35 PM - 3:50 PM"]],"Name of speaker":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"Speaker":[["Qingquan (Kevin) Chen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:50 PM - 4:05 PM"]],"Name of speaker":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"Speaker":[["Gregory Resch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:05 PM - 4:25 PM"]],"Name of speaker":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"Speaker":[["Paul Bollyky"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:25 PM - 4:45 PM"]],"Name of speaker":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":[["Tuesday"]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 7:00 PM"]],"Event":[["Informal Poster session "]]},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":[["Tuesday"]],"Length of talk":[["120 min"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"Speaker":[["Evergreen Chronology of Inspiration Panel"]],"Location":[["Purce Hall"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Celebration/Dancing"]]},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 7: Phage and the immune system"]],"Event":[["Session 7: Phage and the immune system"]]},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, USA"]],"Speaker":[["Dwayne Roach"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"Speaker":[["Krystyna Dabrowska"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:50 AM - 9:10 AM"]],"Name of speaker":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Philip Lauman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:10 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["College of Life and Environmental Sciences, University of Exeter"]],"Speaker":[["Meaghan Castledine"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:25 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Léa Zinsli"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:40 AM - 9:55 AM"]],"Name of speaker":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"Speaker":[["Thomas Smytheman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:55 AM - 10:15 AM"]],"Name of speaker":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Time":[["10:15 AM - 10:35 AM"]],"Event":[["Break"]]},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 8: Molecular phage biology I"]],"Event":[["Session 8: Molecular phage biology I"]]},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"Speaker":[["Vivek Mutalik"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:35 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Enea Maffei"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:55 AM - 11:10 AM"]],"Name of speaker":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Carmen Gu Liu"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:10 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"Speaker":[["Jordan Romeyer Dherbey"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:25 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":[["Wednesday"]],"Length of talk":[["10 min."]],"Affiliation":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"Speaker":[["Bani Mallick"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:40 AM - 11:50 AM"]],"Name of speaker":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":[["Wednesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"Speaker":[["Chair: Michael Koeris"]],"Location":[["Purce Hall"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Event":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Speaker":[["Michael Koeris"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["PhagePro, Inc"]],"Speaker":[["Minmin Yen"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Locus Biosciences"]],"Speaker":[["Nick Conley"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Dominic Sauvageau"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"Session":[["Social/Fun!"]],"Time":[["2:05 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":[["Wednesday"]],"Location":[["TBA"]],"Session":[["Food!"]],"Time":[["5:00 PM - 7:00 PM"]],"Event":[["Dinner (TBA)"]]},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"Session":[["Poster Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["Formal Poster Session/Mixer I"]]},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:30 PM - ?"]],"Event":[["Phage sculpture building"]]},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Dancing "]]},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 10: Ecology & Informatics II"]],"Event":[["Session 10: Ecology & Informatics II"]]},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Speaker":[["Ryan Cook"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage ecology)"]]},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Leicester"]],"Speaker":[["Sophie Harrison"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:50 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"Speaker":[["Michael Shamash"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:05 AM - 9:20 AM"]],"Name of speaker":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Martha Clokie"]],"Accepted in airtable":[["No"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:20 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA"]]},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"Speaker":[["Chair: Hany Anany & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 11: Phage in food and agriculture"]],"Event":[["Session 11: Phage in food and agriculture"]]},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["KU Leuven, Belgium"]],"Speaker":[["Jeroen Wagemans"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["10:40 AM - 11:00 AM"]],"Name of speaker":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Research Scientist"]],"Speaker":[["Hany Anany"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:00 AM - 11:20 AM"]],"Name of speaker":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"Speaker":[["Thomas Denes"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:20 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["SCIPHAGE"]],"Speaker":[["Viviana Clavijo"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 12: Molecular phage biology II"]],"Event":[["Session 12: Molecular phage biology II"]]},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"Speaker":[["Katharina Höfer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Janine Bowring"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"Speaker":[["Rebecca Quinn"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage tRNAs Subvert Host Resistance"]]},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"Speaker":[["Valentina Andrea Floccari"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, University of Idaho"]],"Speaker":[["Tracey Peters"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:05 PM - 2:20 PM"]],"Name of speaker":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Department of Medicine, McMaster University"]],"Speaker":[["Gayatri Nair"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:20 PM - 2:30 PM"]],"Name of speaker":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biasing Bacteriophage Behaviour"]]},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"Speaker":[["Jieting Lin"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:30 PM - 2:40 PM"]],"Name of speaker":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:40 PM - 2:55 PM"]],"Event":[["Closing Remarks / Future Meeting"]]},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Poster Session"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["Formal Poster Session/Mixer II "]]},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Location":[["Olympia"]],"Session":[["Social/Fun!"]],"Time":[["5 PM - 9:00 PM"]],"Event":[["Adventure out into Olympia for dinner and an evening on the water. "]]},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":[["Friday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"Session":[["Social/Fun!"]],"Event":[["Mt. Rainier hike!"]]}]}},"d670a21e-d7a0-4df8-895f-4c17ad111b8b":{"value":{"id":"d670a21e-d7a0-4df8-895f-4c17ad111b8b","version":15,"type":"text","format":{"copied_from_pointer":{"id":"7c0b18ba-8d11-42d9-b76a-861db10fbc32","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689388527897,"last_edited_time":1689388527897,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"7c0b18ba-8d11-42d9-b76a-861db10fbc32","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"69c54b4d-79c7-4534-bb9b-702ad932adef":{"value":{"id":"69c54b4d-79c7-4534-bb9b-702ad932adef","version":26,"type":"header","properties":{"title":[["Thursday, August 10"]]},"format":{"copied_from_pointer":{"id":"95b74f6f-3b94-482a-90ca-16ec74230516","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689394247317,"last_edited_time":1689394258148,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"95b74f6f-3b94-482a-90ca-16ec74230516","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"e742e9dc-76d6-4eaf-bbfb-b5b276e0183f":{"value":{"id":"e742e9dc-76d6-4eaf-bbfb-b5b276e0183f","version":4,"type":"collection_view","properties":{"title":[[""]]},"view_ids":["6b2cd9f1-b13e-463a-9e5b-a0d0f4a4c8c4"],"format":{"copied_from_pointer":{"id":"dfd715cb-9365-44be-805a-dc2d337687bd","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689394270075,"last_edited_time":1689394270078,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"dfd715cb-9365-44be-805a-dc2d337687bd","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Evergreen Working Schedule"]],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm"},{"width":218,"visible":true,"property":"R\\:D"},{"width":193,"visible":true,"property":"pjT:"},{"width":228,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":200,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["Quadram Institute, UK"]],"Speaker":[["Instructor: Evelien Adriaenssens"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Viromics: Viral community analysis with metagenomics"]]},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["TAILOR Labs, Baylor College of Medicine"]],"Speaker":[["Instructor: Justin Clark "]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["BBQ Welcome lunch at Evergreen"]]},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Speaker":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Genomics/PATRIC)"]]},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Affiliation":[["Phages for Global Health"]],"Speaker":[["Instructor: Tobi Nagel & Fran Hodges"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Biobanking)"]]},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"Session":[["Pre-conference workshop"]],"Time":[["6:30 PM - 8:30 PM"]],"Event":[["(TBC) Workshop Extension"]]},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["Informal Poster Session "]]},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Location":[["Purce Hall"]],"Session":[["Session 1: Plenary talks"]],"Event":[["Session 1: Plenary talks"]]},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:30 AM - 8:45 AM"]],"Event":[["Phagebiotics Welcome!"]]},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Martin Loessner"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:45 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Bacteriophages by design: tiny killers and smart detectives"]]},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Quadram Institute Bioscience"]],"Speaker":[["Evelien Adriaenssens"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["9:05 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["What’s going on with phage taxonomy and is it really necessary?"]]},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"Speaker":[["Chair: Teagan Brown & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 2: Ecology & Informatics I"]],"Event":[["Session 2: Ecology & Informatics I"]]},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"Speaker":[["Gary Trubl"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:25 AM - 9:45 AM"]],"Name of speaker":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Harvard Medical School"]],"Speaker":[["Sian Owen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:45 AM - 10:05 AM"]],"Name of speaker":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Location":[["CAB"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:05 AM - 10:25 AM"]],"Event":[["Break"]]},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Globe Institute, University of Copenhagen, Denmark"]],"Speaker":[["Thomas Sicheritz-Pontén"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:25 AM - 10:45 AM"]],"Name of speaker":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University at Buffalo"]],"Speaker":[["Kathryn Kauffman"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:45 AM - 11:05 AM"]],"Name of speaker":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the roles of phages in the oral microbiome"]]},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jan Zheng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:05 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phase Genomics, Inc."]],"Speaker":[["Benjamin Auch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:25 AM - 11:40 PM"]],"Name of speaker":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"Speaker":[["Yishay Pinto"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":[["Monday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 3: Phage defense"]],"Event":[["Session 3: Phage defense"]]},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Otago, New Zealand"]],"Speaker":[["Peter Fineran"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Anti-CRISPR strategies and their regulation"]]},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"Speaker":[["Franklin Nobrega"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Co-occurrence and synergism of anti-phage defence systems"]]},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, McMaster University, Hamilton, Canada"]],"Speaker":[["Leah Sather"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Biological Sciences"]],"Speaker":[["Thomas Todeschini"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Xu Peng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Time":[["2:25 PM - 2:45 PM"]],"Event":[["Break"]]},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"Speaker":[["Chair: Sandra Morales & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 4: Phage therapy I"]],"Event":[["Session 4: Phage therapy I"]]},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"Speaker":[["Scott Stibitz"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["2:45 PM - 3:05 PM"]],"Name of speaker":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phage Consulting, Sydney, New South Wales, Australia"]],"Speaker":[["Sandra Morales"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:05 PM - 3:20 PM"]],"Name of speaker":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy overview)"]]},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Queen Astrid Military Hospital, Belgium"]],"Speaker":[["Jean-Paul Pirnay"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:20 PM - 3:40 PM"]],"Name of speaker":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Belgium)"]]},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Yale University, USA"]],"Speaker":[["Benjamin Chan"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:40 PM - 3:55 PM"]],"Name of speaker":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience at Yale)"]]},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Austen Terwilliger"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:55 PM - 4:15 PM"]],"Name of speaker":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":[["Monday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["5:30 PM & 6:00 PM buses"]],"Event":[["Head to bus depot and go downtown to movie theater"]]},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"Speaker":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Location":[["Downtown Olympia"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:30 PM"]],"Event":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["9:30 PM, 10:15 PM, 11 PM buses"]],"Event":[["Buses back to Evergreen"]]},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"Speaker":[["Chair: Gina Suh & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 5: Phage therapy II"]],"Event":[["Session 5: Phage therapy II"]]},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":[["Tuesday"]],"Length of talk":[["10 min."]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:30 AM - 8:40 AM"]],"Event":[["Introduction to keynote"]]},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Diane Shader Smith"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:40 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Keynote TBA (Phage therapy patient/parent experience)"]]},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jessica Sacher"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["9:40 AM - 10:00 AM"]],"Name of speaker":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Toronto"]],"Speaker":[["Greg German"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:00 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Canada)"]]},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Speaker":[["Talk - Chris Shafer "]],"Accepted in airtable":[["No"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:40 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Patient experience)"]]},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":[["Tuesday"]],"Length of talk":[["5 min"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:55 AM - 11:00 AM"]],"Event":[["Introduction to keynote"]]},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["[Keynote] Steffanie Strathdee"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["11:00 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in San Diego)"]]},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Event":[["Session 6: Understanding & improving phage therapy"]]},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["Katrine Whiteson"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"Speaker":[["Sabrina Green"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"Speaker":[["Kevin Burke"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"Speaker":[["Tiffany Luong"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"Speaker":[["Magdalena Unterer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Rime Bioinformatics SAS, Palaiseau, France"]],"Speaker":[["Antoine Culot"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:25 PM - 2:40 PM "]],"Name of speaker":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Jiemin Du"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:40 PM - 2:55 PM"]],"Name of speaker":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["2:55 PM - 3:15 PM"]],"Event":[["Break"]]},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"Speaker":[["Susan Lehman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:15 PM - 3:35 PM"]],"Name of speaker":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"Speaker":[["Katarzyna Danis-Włodarczyk"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:35 PM - 3:50 PM"]],"Name of speaker":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"Speaker":[["Qingquan (Kevin) Chen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:50 PM - 4:05 PM"]],"Name of speaker":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"Speaker":[["Gregory Resch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:05 PM - 4:25 PM"]],"Name of speaker":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"Speaker":[["Paul Bollyky"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:25 PM - 4:45 PM"]],"Name of speaker":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":[["Tuesday"]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 7:00 PM"]],"Event":[["Informal Poster session "]]},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":[["Tuesday"]],"Length of talk":[["120 min"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"Speaker":[["Evergreen Chronology of Inspiration Panel"]],"Location":[["Purce Hall"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Celebration/Dancing"]]},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 7: Phage and the immune system"]],"Event":[["Session 7: Phage and the immune system"]]},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, USA"]],"Speaker":[["Dwayne Roach"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"Speaker":[["Krystyna Dabrowska"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:50 AM - 9:10 AM"]],"Name of speaker":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Philip Lauman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:10 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["College of Life and Environmental Sciences, University of Exeter"]],"Speaker":[["Meaghan Castledine"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:25 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Léa Zinsli"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:40 AM - 9:55 AM"]],"Name of speaker":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"Speaker":[["Thomas Smytheman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:55 AM - 10:15 AM"]],"Name of speaker":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Time":[["10:15 AM - 10:35 AM"]],"Event":[["Break"]]},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 8: Molecular phage biology I"]],"Event":[["Session 8: Molecular phage biology I"]]},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"Speaker":[["Vivek Mutalik"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:35 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Enea Maffei"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:55 AM - 11:10 AM"]],"Name of speaker":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Carmen Gu Liu"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:10 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"Speaker":[["Jordan Romeyer Dherbey"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:25 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":[["Wednesday"]],"Length of talk":[["10 min."]],"Affiliation":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"Speaker":[["Bani Mallick"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:40 AM - 11:50 AM"]],"Name of speaker":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":[["Wednesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"Speaker":[["Chair: Michael Koeris"]],"Location":[["Purce Hall"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Event":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Speaker":[["Michael Koeris"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["PhagePro, Inc"]],"Speaker":[["Minmin Yen"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Locus Biosciences"]],"Speaker":[["Nick Conley"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Dominic Sauvageau"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"Session":[["Social/Fun!"]],"Time":[["2:05 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":[["Wednesday"]],"Location":[["TBA"]],"Session":[["Food!"]],"Time":[["5:00 PM - 7:00 PM"]],"Event":[["Dinner (TBA)"]]},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"Session":[["Poster Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["Formal Poster Session/Mixer I"]]},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:30 PM - ?"]],"Event":[["Phage sculpture building"]]},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Dancing "]]},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 10: Ecology & Informatics II"]],"Event":[["Session 10: Ecology & Informatics II"]]},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Speaker":[["Ryan Cook"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage ecology)"]]},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Leicester"]],"Speaker":[["Sophie Harrison"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:50 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"Speaker":[["Michael Shamash"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:05 AM - 9:20 AM"]],"Name of speaker":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Martha Clokie"]],"Accepted in airtable":[["No"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:20 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA"]]},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"Speaker":[["Chair: Hany Anany & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 11: Phage in food and agriculture"]],"Event":[["Session 11: Phage in food and agriculture"]]},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["KU Leuven, Belgium"]],"Speaker":[["Jeroen Wagemans"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["10:40 AM - 11:00 AM"]],"Name of speaker":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Research Scientist"]],"Speaker":[["Hany Anany"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:00 AM - 11:20 AM"]],"Name of speaker":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"Speaker":[["Thomas Denes"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:20 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["SCIPHAGE"]],"Speaker":[["Viviana Clavijo"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 12: Molecular phage biology II"]],"Event":[["Session 12: Molecular phage biology II"]]},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"Speaker":[["Katharina Höfer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Janine Bowring"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"Speaker":[["Rebecca Quinn"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage tRNAs Subvert Host Resistance"]]},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"Speaker":[["Valentina Andrea Floccari"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, University of Idaho"]],"Speaker":[["Tracey Peters"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:05 PM - 2:20 PM"]],"Name of speaker":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Department of Medicine, McMaster University"]],"Speaker":[["Gayatri Nair"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:20 PM - 2:30 PM"]],"Name of speaker":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biasing Bacteriophage Behaviour"]]},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"Speaker":[["Jieting Lin"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:30 PM - 2:40 PM"]],"Name of speaker":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:40 PM - 2:55 PM"]],"Event":[["Closing Remarks / Future Meeting"]]},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Poster Session"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["Formal Poster Session/Mixer II "]]},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Location":[["Olympia"]],"Session":[["Social/Fun!"]],"Time":[["5 PM - 9:00 PM"]],"Event":[["Adventure out into Olympia for dinner and an evening on the water. "]]},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":[["Friday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"Session":[["Social/Fun!"]],"Event":[["Mt. Rainier hike!"]]}]}},"fac3f005-cca6-4a9d-9544-39c3832e265a":{"value":{"id":"fac3f005-cca6-4a9d-9544-39c3832e265a","version":22,"type":"header","properties":{"title":[["Friday, August 11"]]},"format":{"copied_from_pointer":{"id":"69c54b4d-79c7-4534-bb9b-702ad932adef","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689394303021,"last_edited_time":1689394318291,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"69c54b4d-79c7-4534-bb9b-702ad932adef","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"160710ef-2c4d-4c25-81a7-bd3a1fd2e3fa":{"value":{"id":"160710ef-2c4d-4c25-81a7-bd3a1fd2e3fa","version":4,"type":"collection_view","properties":{"title":[[""]]},"view_ids":["fca980a6-f836-4fed-b518-431e39ddcb61"],"format":{"copied_from_pointer":{"id":"e742e9dc-76d6-4eaf-bbfb-b5b276e0183f","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689394303021,"last_edited_time":1689394303025,"parent_id":"119d3a25-82a8-46e5-aacf-a6c43db755ca","parent_table":"block","alive":true,"copied_from":"e742e9dc-76d6-4eaf-bbfb-b5b276e0183f","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Evergreen Working Schedule"]],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm"},{"width":218,"visible":true,"property":"R\\:D"},{"width":193,"visible":true,"property":"pjT:"},{"width":228,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":200,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["Quadram Institute, UK"]],"Speaker":[["Instructor: Evelien Adriaenssens"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Viromics: Viral community analysis with metagenomics"]]},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"Affiliation":[["TAILOR Labs, Baylor College of Medicine"]],"Speaker":[["Instructor: Justin Clark "]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["8:30 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["BBQ Welcome lunch at Evergreen"]]},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Speaker":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Genomics/PATRIC)"]]},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"Affiliation":[["Phages for Global Health"]],"Speaker":[["Instructor: Tobi Nagel & Fran Hodges"]],"Location":[["Purce Hall"]],"Session":[["Pre-conference workshop"]],"Time":[["1:00 PM - 5:00 PM"]],"Name of speaker":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Biobanking)"]]},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":[["Sunday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"Session":[["Pre-conference workshop"]],"Time":[["6:30 PM - 8:30 PM"]],"Event":[["(TBC) Workshop Extension"]]},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["Informal Poster Session "]]},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":[["Sunday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:00 PM - 9:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Location":[["Purce Hall"]],"Session":[["Session 1: Plenary talks"]],"Event":[["Session 1: Plenary talks"]]},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:30 AM - 8:45 AM"]],"Event":[["Phagebiotics Welcome!"]]},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Martin Loessner"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["8:45 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Bacteriophages by design: tiny killers and smart detectives"]]},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Quadram Institute Bioscience"]],"Speaker":[["Evelien Adriaenssens"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 1: Plenary talks"]],"Time":[["9:05 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["What’s going on with phage taxonomy and is it really necessary?"]]},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"Speaker":[["Chair: Teagan Brown & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 2: Ecology & Informatics I"]],"Event":[["Session 2: Ecology & Informatics I"]]},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"Speaker":[["Gary Trubl"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:25 AM - 9:45 AM"]],"Name of speaker":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Harvard Medical School"]],"Speaker":[["Sian Owen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["9:45 AM - 10:05 AM"]],"Name of speaker":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Location":[["CAB"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:05 AM - 10:25 AM"]],"Event":[["Break"]]},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Globe Institute, University of Copenhagen, Denmark"]],"Speaker":[["Thomas Sicheritz-Pontén"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:25 AM - 10:45 AM"]],"Name of speaker":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University at Buffalo"]],"Speaker":[["Kathryn Kauffman"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["10:45 AM - 11:05 AM"]],"Name of speaker":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the roles of phages in the oral microbiome"]]},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jan Zheng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:05 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phase Genomics, Inc."]],"Speaker":[["Benjamin Auch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:25 AM - 11:40 PM"]],"Name of speaker":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"Speaker":[["Yishay Pinto"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 2: Ecology & Informatics I"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":[["Monday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 3: Phage defense"]],"Event":[["Session 3: Phage defense"]]},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Otago, New Zealand"]],"Speaker":[["Peter Fineran"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Anti-CRISPR strategies and their regulation"]]},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"Speaker":[["Franklin Nobrega"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Co-occurrence and synergism of anti-phage defence systems"]]},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, McMaster University, Hamilton, Canada"]],"Speaker":[["Leah Sather"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Biological Sciences"]],"Speaker":[["Thomas Todeschini"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Xu Peng"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 3: Phage defense"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Speaker":[["Break"]],"Time":[["2:25 PM - 2:45 PM"]],"Event":[["Break"]]},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"Speaker":[["Chair: Sandra Morales & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 4: Phage therapy I"]],"Event":[["Session 4: Phage therapy I"]]},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"Speaker":[["Scott Stibitz"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["2:45 PM - 3:05 PM"]],"Name of speaker":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Phage Consulting, Sydney, New South Wales, Australia"]],"Speaker":[["Sandra Morales"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:05 PM - 3:20 PM"]],"Name of speaker":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy overview)"]]},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["Queen Astrid Military Hospital, Belgium"]],"Speaker":[["Jean-Paul Pirnay"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:20 PM - 3:40 PM"]],"Name of speaker":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Belgium)"]]},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":[["Monday"]],"Length of talk":[["15 min"]],"Affiliation":[["Yale University, USA"]],"Speaker":[["Benjamin Chan"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:40 PM - 3:55 PM"]],"Name of speaker":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience at Yale)"]]},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":[["Monday"]],"Length of talk":[["20 min"]],"Affiliation":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Austen Terwilliger"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 4: Phage therapy I"]],"Time":[["3:55 PM - 4:15 PM"]],"Name of speaker":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":[["Monday"]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["5:30 PM & 6:00 PM buses"]],"Event":[["Head to bus depot and go downtown to movie theater"]]},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":[["Monday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"Speaker":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Location":[["Downtown Olympia"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:30 PM"]],"Event":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":[["Monday"]],"Session":[["Special Session"]],"Time":[["9:30 PM, 10:15 PM, 11 PM buses"]],"Event":[["Buses back to Evergreen"]]},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"Speaker":[["Chair: Gina Suh & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 5: Phage therapy II"]],"Event":[["Session 5: Phage therapy II"]]},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":[["Tuesday"]],"Length of talk":[["10 min."]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:30 AM - 8:40 AM"]],"Event":[["Introduction to keynote"]]},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Diane Shader Smith"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["8:40 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Keynote TBA (Phage therapy patient/parent experience)"]]},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"Speaker":[["Jessica Sacher"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["9:40 AM - 10:00 AM"]],"Name of speaker":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["University of Toronto"]],"Speaker":[["Greg German"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:00 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in Canada)"]]},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Speaker":[["Talk - Chris Shafer "]],"Accepted in airtable":[["No"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:40 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Patient experience)"]]},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":[["Tuesday"]],"Length of talk":[["5 min"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["10:55 AM - 11:00 AM"]],"Event":[["Introduction to keynote"]]},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["[Keynote] Steffanie Strathdee"]],"Session":[["Session 5: Phage therapy II"]],"Time":[["11:00 AM - 12:00 PM"]],"Name of speaker":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage therapy experience in San Diego)"]]},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Event":[["Session 6: Understanding & improving phage therapy"]]},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["IPATH, UCSD"]],"Speaker":[["Katrine Whiteson"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"Speaker":[["Sabrina Green"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:20 PM - 1:40 PM"]],"Name of speaker":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"Speaker":[["Kevin Burke"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:40 PM - 1:55 PM"]],"Name of speaker":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"Speaker":[["Tiffany Luong"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["1:55 PM - 2:10 PM"]],"Name of speaker":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"Speaker":[["Magdalena Unterer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:10 PM - 2:25 PM"]],"Name of speaker":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Rime Bioinformatics SAS, Palaiseau, France"]],"Speaker":[["Antoine Culot"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:25 PM - 2:40 PM "]],"Name of speaker":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Jiemin Du"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["2:40 PM - 2:55 PM"]],"Name of speaker":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Time":[["2:55 PM - 3:15 PM"]],"Event":[["Break"]]},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"Speaker":[["Susan Lehman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:15 PM - 3:35 PM"]],"Name of speaker":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"Speaker":[["Katarzyna Danis-Włodarczyk"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:35 PM - 3:50 PM"]],"Name of speaker":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":[["Tuesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"Speaker":[["Qingquan (Kevin) Chen"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["3:50 PM - 4:05 PM"]],"Name of speaker":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"Speaker":[["Gregory Resch"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:05 PM - 4:25 PM"]],"Name of speaker":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":[["Tuesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"Speaker":[["Paul Bollyky"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 6: Understanding & improving phage therapy"]],"Time":[["4:25 PM - 4:45 PM"]],"Name of speaker":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":[["Tuesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["5:00 PM - 6:00 PM"]],"Event":[["Dinner"]]},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":[["Tuesday"]],"Session":[["Poster Session"]],"Time":[["6:00 PM - 7:00 PM"]],"Event":[["Informal Poster session "]]},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":[["Tuesday"]],"Length of talk":[["120 min"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"Speaker":[["Evergreen Chronology of Inspiration Panel"]],"Location":[["Purce Hall"]],"Session":[["Special Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":[["Tuesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Celebration/Dancing"]]},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 7: Phage and the immune system"]],"Event":[["Session 7: Phage and the immune system"]]},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Biology, San Diego State University, San Diego, USA"]],"Speaker":[["Dwayne Roach"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"Speaker":[["Krystyna Dabrowska"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["8:50 AM - 9:10 AM"]],"Name of speaker":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Philip Lauman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:10 AM - 9:25 AM"]],"Name of speaker":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["College of Life and Environmental Sciences, University of Exeter"]],"Speaker":[["Meaghan Castledine"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:25 AM - 9:40 AM"]],"Name of speaker":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Léa Zinsli"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:40 AM - 9:55 AM"]],"Name of speaker":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"Speaker":[["Thomas Smytheman"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 7: Phage and the immune system"]],"Time":[["9:55 AM - 10:15 AM"]],"Name of speaker":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Time":[["10:15 AM - 10:35 AM"]],"Event":[["Break"]]},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 8: Molecular phage biology I"]],"Event":[["Session 8: Molecular phage biology I"]]},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Affiliation":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"Speaker":[["Vivek Mutalik"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:35 AM - 10:55 AM"]],"Name of speaker":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"Speaker":[["Enea Maffei"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["10:55 AM - 11:10 AM"]],"Name of speaker":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"Speaker":[["Carmen Gu Liu"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:10 AM - 11:25 AM"]],"Name of speaker":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"Speaker":[["Jordan Romeyer Dherbey"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:25 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":[["Wednesday"]],"Length of talk":[["10 min."]],"Affiliation":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"Speaker":[["Bani Mallick"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 8: Molecular phage biology I"]],"Time":[["11:40 AM - 11:50 AM"]],"Name of speaker":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":[["Wednesday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"Speaker":[["Chair: Michael Koeris"]],"Location":[["Purce Hall"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Event":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":[["Wednesday"]],"Length of talk":[["20 min"]],"Speaker":[["Michael Koeris"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["PhagePro, Inc"]],"Speaker":[["Minmin Yen"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["Locus Biosciences"]],"Speaker":[["Nick Conley"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":[["Wednesday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Alberta"]],"Speaker":[["Dominic Sauvageau"]],"Session":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage manufacturing special panel session)"]]},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"Session":[["Social/Fun!"]],"Time":[["2:05 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt"]]},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":[["Wednesday"]],"Location":[["TBA"]],"Session":[["Food!"]],"Time":[["5:00 PM - 7:00 PM"]],"Event":[["Dinner (TBA)"]]},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"Session":[["Poster Session"]],"Time":[["7:00 PM - 9:00 PM"]],"Event":[["Formal Poster Session/Mixer I"]]},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"Session":[["Social/Fun!"]],"Time":[["6:30 PM - ?"]],"Event":[["Phage sculpture building"]]},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":[["Wednesday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["9:00 PM - ?"]],"Event":[["Dancing "]]},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 10: Ecology & Informatics II"]],"Event":[["Session 10: Ecology & Informatics II"]]},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Speaker":[["Ryan Cook"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:30 AM - 8:50 AM"]],"Name of speaker":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA (Phage ecology)"]]},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Leicester"]],"Speaker":[["Sophie Harrison"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["8:50 AM - 9:05 AM"]],"Name of speaker":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"Speaker":[["Michael Shamash"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:05 AM - 9:20 AM"]],"Name of speaker":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Speaker":[["[Keynote] Martha Clokie"]],"Accepted in airtable":[["No"]],"Session":[["Session 10: Ecology & Informatics II"]],"Time":[["9:20 AM - 10:20 AM"]],"Name of speaker":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["TBA"]]},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Time":[["10:20 AM - 10:40 AM"]],"Event":[["Break"]]},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"Speaker":[["Chair: Hany Anany & TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 11: Phage in food and agriculture"]],"Event":[["Session 11: Phage in food and agriculture"]]},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["KU Leuven, Belgium"]],"Speaker":[["Jeroen Wagemans"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["10:40 AM - 11:00 AM"]],"Name of speaker":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Research Scientist"]],"Speaker":[["Hany Anany"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:00 AM - 11:20 AM"]],"Name of speaker":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"Speaker":[["Thomas Denes"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:20 AM - 11:40 AM"]],"Name of speaker":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["SCIPHAGE"]],"Speaker":[["Viviana Clavijo"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 11: Phage in food and agriculture"]],"Time":[["11:40 AM - 11:55 AM"]],"Name of speaker":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":[["Thursday"]],"Length of talk":[["60 min."]],"Location":[["CAB"]],"Session":[["Food!"]],"Time":[["12:00 PM - 1:00 PM"]],"Event":[["Lunch"]]},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"Speaker":[["Chair: TBA"]],"Location":[["Purce Hall"]],"Session":[["Session 12: Molecular phage biology II"]],"Event":[["Session 12: Molecular phage biology II"]]},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":[["Thursday"]],"Length of talk":[["20 min"]],"Affiliation":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"Speaker":[["Katharina Höfer"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:00 PM - 1:20 PM"]],"Name of speaker":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["University of Copenhagen"]],"Speaker":[["Janine Bowring"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:20 PM - 1:35 PM"]],"Name of speaker":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"Speaker":[["Rebecca Quinn"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:35 PM - 1:50 PM"]],"Name of speaker":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Phage tRNAs Subvert Host Resistance"]]},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"Speaker":[["Valentina Andrea Floccari"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["1:50 PM - 2:05 PM"]],"Name of speaker":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Affiliation":[["Department of Biology, University of Idaho"]],"Speaker":[["Tracey Peters"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:05 PM - 2:20 PM"]],"Name of speaker":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Department of Medicine, McMaster University"]],"Speaker":[["Gayatri Nair"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:20 PM - 2:30 PM"]],"Name of speaker":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Biasing Bacteriophage Behaviour"]]},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":[["Thursday"]],"Length of talk":[["10 min."]],"Affiliation":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"Speaker":[["Jieting Lin"]],"Accepted in airtable":[["Yes"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:30 PM - 2:40 PM"]],"Name of speaker":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"Event":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":[["Thursday"]],"Length of talk":[["15 min"]],"Session":[["Session 12: Molecular phage biology II"]],"Time":[["2:40 PM - 2:55 PM"]],"Event":[["Closing Remarks / Future Meeting"]]},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Poster Session"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["Formal Poster Session/Mixer II "]]},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"Session":[["Social/Fun!"]],"Time":[["3 PM - 5:00 PM"]],"Event":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":[["Thursday"]],"Date & Time":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Location":[["Olympia"]],"Session":[["Social/Fun!"]],"Time":[["5 PM - 9:00 PM"]],"Event":[["Adventure out into Olympia for dinner and an evening on the water. "]]},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":[["Friday"]],"Date & Time":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"Session":[["Social/Fun!"]],"Event":[["Mt. Rainier hike!"]]}]}},"f1a511bf-9f2b-451f-87b9-8a6a0ec5ddd4":{"value":{"id":"f1a511bf-9f2b-451f-87b9-8a6a0ec5ddd4","version":3,"type":"page","format":{"copied_from_pointer":{"id":"21dfef19-a016-4520-bc9a-6eaac35c0123","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689055751937,"last_edited_time":1689055751969,"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"copied_from":"21dfef19-a016-4520-bc9a-6eaac35c0123","created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"15835ea7-91d7-4973-b3da-96c7d502e4f4":{"value":{"id":"15835ea7-91d7-4973-b3da-96c7d502e4f4","version":3,"type":"page","properties":{"=WD`":[["15 min"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM"]],"title":[["Talk - Luong"]]},"format":{"copied_from_pointer":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689055751965,"last_edited_time":1689055751969,"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"copied_from":"3b88ee39-8868-4cfb-83bb-1f234e16724d","created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/475cc3d7e2d8c564bf020ba5850414de9e4b778fae271da9b327e5e9ea44212700023c6e9ef71a80 b/.wrangler/state/v3/cache/default/blobs/475cc3d7e2d8c564bf020ba5850414de9e4b778fae271da9b327e5e9ea44212700023c6e9ef71a80 new file mode 100644 index 0000000..d0b9b88 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/475cc3d7e2d8c564bf020ba5850414de9e4b778fae271da9b327e5e9ea44212700023c6e9ef71a80 @@ -0,0 +1 @@ +{"2261b897-101d-410d-8537-2b7a073a2b5a":{"value":{"id":"2261b897-101d-410d-8537-2b7a073a2b5a","version":441,"type":"page","properties":{"title":[["[EVG23] Live Main Page"]]},"content":["bc9ec50e-b1d2-480c-a4fb-f40c252bb4c3","4e4f1a6a-3980-49b8-ba21-919d269e33f2","ee7981b7-d260-4085-83e3-0b0a474739af","abf482cf-3673-4b52-a418-bef95a4d24fe","8192204b-e9b8-4e1b-81d8-0d3e40aa1d74","047be5c7-bef2-468a-80ca-a820e3bed0f7","33d417e4-c5e3-4b25-af74-f6d1262ec411","b59782e9-3843-4802-b3a2-3fe7a39962ee","1427d2bf-9e26-4172-8f6e-bb8eced04404","1527999f-f676-4188-a414-0a5e22f80d5d","b085ccf8-2074-4293-a613-139c3fb34902","df631fc9-57cc-4cc0-acd3-d28c8b2da95e","36dbbbe4-6aa6-42b4-b3b3-e60588327db3","57a3014a-9739-423f-b023-878ddcaf7965","fd9f604b-dddc-41a2-bdf4-7da69cae6aad","4ab4be64-3f48-4ad2-94f0-6d3ee39219f6","0ad626fe-757e-408c-bb69-788addba8c4c","7ef8dda0-6896-446b-b31d-63b5fae46bdf","693696ef-bd0f-489f-b347-9d9ebc1b9a5a","0ec3ca03-b1c5-4ac4-b230-53f44af5245b","e06357e2-610e-4e47-8fa6-12dbad750b13","15cd163b-19bb-4769-9eaf-d94bbca50c1a","ff0c924c-29d3-4b31-b6d1-4a2d70639ea4","57da7321-fd28-4133-88e8-d8f562a41a66","46b14a89-706a-4f04-8a55-85d417a84187","ac866864-5949-43e7-a4a6-8a83cde2396f","71909d73-b950-4b04-935f-5939a0774106","74ac9d5b-ddb2-4674-bad7-b5c6ff22000a","3a90b126-2c94-453e-8e48-1dff53c50cfa","684b67f7-5e3d-406e-a87a-e22a32674ecc","c9de8d3f-86fc-49fe-9e15-15cc6f4d6c64","b8b59d77-85c7-4028-a5fe-b42d13701773","278a0c04-c3f4-46c4-a0a9-0e70ca0d8443","649e62ae-49b2-4140-b458-1eb941f38e51","851d6bce-4c8a-4a87-9b73-f290bc902193","7efe8c53-52ea-4e81-8810-7ceefeea535f","68f1d8a0-d3d4-49ff-9be6-23e5e7312410","26af6a6f-928e-4c4f-8744-57476f0a83c9","60bc96cd-786d-481c-82ba-7a959ef1cf9c","b3a103be-5017-4bd3-91b0-212dcb8c091e","d5e166e4-1fef-43db-90b5-ac4409e6226e","497323d3-a2d0-4789-9550-6e2b8f4c7120","9ee10b2a-cf64-401d-854e-f7e435674d1e","c352cf89-5f72-429c-a9d5-7c18f277a4ad","180d4194-143f-4f83-8a28-eb3adbcc88a7","6b150770-6cd2-4b43-8fe3-baff8b23ae13","15f88ce8-edb2-431c-95b0-b324557cc7d8","436b8e72-63a6-42cc-98c4-ceda3d4f7148","4f1c5b2f-9900-4d24-9c22-78ba47674d91","2dc26b6a-4703-47ca-8d5f-2a2bd9ac7540","e6bbf137-2947-4a6a-9aee-bdcb448d1339","afa944bb-426d-47a4-b6e6-dfb96555e29e","a895429c-33c2-4c55-b3f0-f7a04a9916f6","afe31e9c-23eb-4949-bcb9-95a981ade393","c4b139b6-55ea-412d-8743-34c75b509712","c381373b-9a51-4ed5-80b2-a1b090dfcc12","a5f9560a-e225-41ab-83fb-118e90aad9ea","06361fe9-92a3-47ee-a651-13bc69caee32","adc8db2b-cfc2-4849-80b6-b8a9aac18d4d","b13b7f16-daf5-449d-bc88-be7bd8cef379","6f844d00-a15f-4ea7-877f-93cdc5486ddd","4d7cb2dd-d098-440e-8617-3b6fd252c4a6","96692c45-aaf3-4608-b066-3745a8b15633","20bb17be-5a38-4a04-b3d4-b7c62640aa62","6f5442f4-04bd-4b2f-b3ca-6f4e45425496"],"format":{"page_icon":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a03cde64-d931-497a-947d-94ae717483d0/evg-framed.png","copied_from_pointer":{"id":"4bd07fc3-a711-4a91-bb0c-ccd6beb8a99c","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"permissions":[{"role":"reader","type":"public_permission","added_timestamp":1679640473705}],"created_time":1683345810297,"last_edited_time":1688695623607,"parent_id":"2644b329-090a-4289-96bb-2ea741127e3d","parent_table":"block","alive":true,"copied_from":"4bd07fc3-a711-4a91-bb0c-ccd6beb8a99c","file_ids":["a03cde64-d931-497a-947d-94ae717483d0"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"bc9ec50e-b1d2-480c-a4fb-f40c252bb4c3":{"value":{"id":"bc9ec50e-b1d2-480c-a4fb-f40c252bb4c3","version":15,"type":"text","created_time":1687395801832,"last_edited_time":1688695583814,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"4e4f1a6a-3980-49b8-ba21-919d269e33f2":{"value":{"id":"4e4f1a6a-3980-49b8-ba21-919d269e33f2","version":695,"type":"text","properties":{"title":[["Oral Presentations",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],[": We apologize for the abstract acceptance letter delays. We received way too many great oral abstracts than we planned for. We’re redoing our schedule to be able to accommodate as many talks we can. Thank you all for submitting so many great talks!!"]]},"created_time":1687395801832,"last_edited_time":1688695679143,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"ee7981b7-d260-4085-83e3-0b0a474739af":{"value":{"id":"ee7981b7-d260-4085-83e3-0b0a474739af","version":837,"type":"text","properties":{"title":[["Poster Presentations:",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],[" Unless you received an email from us, all poster abstracts have been accepted. Don’t forget to submit a Flash Talk of yourself going over the poster! This way, visitors to your poster will skip right to the juicy questions."]]},"created_time":1687395801832,"last_edited_time":1688695589315,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"abf482cf-3673-4b52-a418-bef95a4d24fe":{"value":{"id":"abf482cf-3673-4b52-a418-bef95a4d24fe","version":17,"type":"divider","created_time":1687395801832,"last_edited_time":1688695495864,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"8192204b-e9b8-4e1b-81d8-0d3e40aa1d74":{"value":{"id":"8192204b-e9b8-4e1b-81d8-0d3e40aa1d74","version":152,"type":"text","properties":{"title":[["Last call for Oral Abstracts!!!",[["b"]]]]},"created_time":1687395801832,"last_edited_time":1688695494440,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"047be5c7-bef2-468a-80ca-a820e3bed0f7":{"value":{"id":"047be5c7-bef2-468a-80ca-a820e3bed0f7","version":492,"type":"text","properties":{"title":[["If you haven’t submitted an oral abstract yet, please do it in the next day or so. Once our schedule is planned, we won’t be able to fit more talks into the schedule."]]},"created_time":1687395831071,"last_edited_time":1687395881184,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"33d417e4-c5e3-4b25-af74-f6d1262ec411":{"value":{"id":"33d417e4-c5e3-4b25-af74-f6d1262ec411","version":166,"type":"text","properties":{"title":[["As for poster abstracts… please do your best to get them in!"]]},"created_time":1687395892062,"last_edited_time":1687395907447,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b59782e9-3843-4802-b3a2-3fe7a39962ee":{"value":{"id":"b59782e9-3843-4802-b3a2-3fe7a39962ee","version":18,"type":"divider","created_time":1687140107662,"last_edited_time":1687140108297,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"1427d2bf-9e26-4172-8f6e-bb8eced04404":{"value":{"id":"1427d2bf-9e26-4172-8f6e-bb8eced04404","version":8,"type":"text","properties":{"title":[["Thank you to everyone who applied for scholarships or travel funds. Your work and dedication to Phage are exciting.",[["b"]]]]},"created_time":1687140109377,"last_edited_time":1687140118994,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"1527999f-f676-4188-a414-0a5e22f80d5d":{"value":{"id":"1527999f-f676-4188-a414-0a5e22f80d5d","version":759,"type":"text","properties":{"title":[["Due to the overwhelming requests, Scholarship and Travel requests have closed — we’ve given over $10,000 to cover air fare, in collaboration with Phages for Global Health. We are still searching for funds through corporate sponsors and grants, to help us give out more in scholarships. "]]},"created_time":1687140109377,"last_edited_time":1687328815892,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b085ccf8-2074-4293-a613-139c3fb34902":{"value":{"id":"b085ccf8-2074-4293-a613-139c3fb34902","version":29,"type":"text","properties":{"title":[["Announcements have been made to recipients on 6/16.",[["b"]]]]},"created_time":1687140139417,"last_edited_time":1687328835890,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"df631fc9-57cc-4cc0-acd3-d28c8b2da95e":{"value":{"id":"df631fc9-57cc-4cc0-acd3-d28c8b2da95e","version":18,"type":"divider","created_time":1687140121244,"last_edited_time":1687140121830,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"36dbbbe4-6aa6-42b4-b3b3-e60588327db3":{"value":{"id":"36dbbbe4-6aa6-42b4-b3b3-e60588327db3","version":305,"type":"text","properties":{"title":[["Oral Abstract and Poster deadlines extended to June 20! \n",[["b"]]],["Official announcements in June 28."]]},"created_time":1686352515783,"last_edited_time":1687140128363,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"57a3014a-9739-423f-b023-878ddcaf7965":{"value":{"id":"57a3014a-9739-423f-b023-878ddcaf7965","version":934,"type":"text","properties":{"title":[["Some of you have reported problems submitting an abstract: "],["if you didn’t receive a preview of your abstract in your email, it was probably not submitted",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],[". If you run into problems, please email me at jan@phage.directory as soon as you can, and I’ll help you get it sorted."]]},"created_time":1686352819074,"last_edited_time":1686528296349,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"fd9f604b-dddc-41a2-bdf4-7da69cae6aad":{"value":{"id":"fd9f604b-dddc-41a2-bdf4-7da69cae6aad","version":31,"type":"divider","created_time":1686972016822,"last_edited_time":1686972019970,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"4ab4be64-3f48-4ad2-94f0-6d3ee39219f6":{"value":{"id":"4ab4be64-3f48-4ad2-94f0-6d3ee39219f6","version":293,"type":"sub_sub_header","properties":{"title":[["Housing Details"]]},"created_time":1686972019968,"last_edited_time":1687331666112,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"0ad626fe-757e-408c-bb69-788addba8c4c":{"value":{"id":"0ad626fe-757e-408c-bb69-788addba8c4c","version":4,"type":"text","properties":{"title":[["Evergreen Housing ",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],["full details here: "],["https://evergreen.phage.directory/housing",[["a","https://evergreen.phage.directory/housing"]]],[" "]]},"created_time":1686972019968,"last_edited_time":1687331658536,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"7ef8dda0-6896-446b-b31d-63b5fae46bdf":{"value":{"id":"7ef8dda0-6896-446b-b31d-63b5fae46bdf","version":42,"type":"text","properties":{"title":[["Early check-in starts on",[["b"]]],[" Saturday, August 6th, at 4 PM — for those who want to attend the workshops."]]},"created_time":1687331684984,"last_edited_time":1687331733220,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"693696ef-bd0f-489f-b347-9d9ebc1b9a5a":{"value":{"id":"693696ef-bd0f-489f-b347-9d9ebc1b9a5a","version":9,"type":"text","properties":{"title":[["Check-out:",[["b"]]],[" Friday, Aug 11th, 11 AM for those not attending Mt. Rainier, 8:30 AM if going to Mt. Rainier and not returning to Evergreen."]]},"created_time":1687331742193,"last_edited_time":1687331761620,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"0ec3ca03-b1c5-4ac4-b230-53f44af5245b":{"value":{"id":"0ec3ca03-b1c5-4ac4-b230-53f44af5245b","version":575,"type":"text","properties":{"title":[["Your Evergreen ticket includes up to "],["SIX NIGHTS of on-campus housing. ",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]]]},"created_time":1687331763168,"last_edited_time":1687331955298,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"e06357e2-610e-4e47-8fa6-12dbad750b13":{"value":{"id":"e06357e2-610e-4e47-8fa6-12dbad750b13","version":256,"type":"text","properties":{"title":[["If you check-in on Saturday 5th for workshops:",[["b"]]],[", you’ll check out on Friday Aug 11, at 8:30am if going to Mt. Rainier, or 11am if not going. If you stay stay Friday, it’s an additional night’s stay."]]},"created_time":1687331868737,"last_edited_time":1687331985354,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"15cd163b-19bb-4769-9eaf-d94bbca50c1a":{"value":{"id":"15cd163b-19bb-4769-9eaf-d94bbca50c1a","version":247,"type":"text","properties":{"title":[["If you check-in on Sunday or Monday",[["b"]]],[", your last day to check out is Saturday Aug 12, at 11am."]]},"created_time":1687331920516,"last_edited_time":1687332012026,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"ff0c924c-29d3-4b31-b6d1-4a2d70639ea4":{"value":{"id":"ff0c924c-29d3-4b31-b6d1-4a2d70639ea4","version":445,"type":"text","properties":{"title":[["You are also welcome to check-in and check-out on any day in-between if you can’t attend the conference, just let us know. Unfortunately we can’t give any partial refunds."]]},"created_time":1687332015788,"last_edited_time":1687332051551,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"57da7321-fd28-4133-88e8-d8f562a41a66":{"value":{"id":"57da7321-fd28-4133-88e8-d8f562a41a66","version":687,"type":"text","properties":{"title":[["If you’re hiking and going straight to Seattle or the airport the same day, our bus will take you to the city for free. If you’re hiking, checking out, and coming back to Olympia, we will securely hold your bags."]]},"created_time":1686972116993,"last_edited_time":1686972226460,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"46b14a89-706a-4f04-8a55-85d417a84187":{"value":{"id":"46b14a89-706a-4f04-8a55-85d417a84187","version":345,"type":"text","properties":{"title":[["We can also arrange additional nights for special circumstances, which are $60/night. Please email us at tescphage@gmail.com and we can accommodate."]]},"created_time":1686972250499,"last_edited_time":1686972278438,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"ac866864-5949-43e7-a4a6-8a83cde2396f":{"value":{"id":"ac866864-5949-43e7-a4a6-8a83cde2396f","version":20,"type":"divider","created_time":1686352513992,"last_edited_time":1686352518329,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"71909d73-b950-4b04-935f-5939a0774106":{"value":{"id":"71909d73-b950-4b04-935f-5939a0774106","version":4,"type":"text","properties":{"title":[["Hike Mt. Rainier with us, get to SeaTac for FREE:",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]]]},"created_time":1685577512435,"last_edited_time":1686352513132,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"74ac9d5b-ddb2-4674-bad7-b5c6ff22000a":{"value":{"id":"74ac9d5b-ddb2-4674-bad7-b5c6ff22000a","version":7,"type":"text","properties":{"title":[["If you come out and hike with us, you can go straight to the airport from the mountain!"]]},"created_time":1685577992109,"last_edited_time":1685577992470,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"3a90b126-2c94-453e-8e48-1dff53c50cfa":{"value":{"id":"3a90b126-2c94-453e-8e48-1dff53c50cfa","version":70,"type":"text","properties":{"title":[["We booked a charter bus to "],["leave from Mt. Rainier at 3pm directly to SeaTac Airport.",[["b"],["b"],["b"],["b"],["b"]]],[" You get to go to SeaTac at "],["NO ADDITIONAL COST",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],[","],[" ",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],["if you book Mt. Rainier hiking. This means you can go straight from "],["Mt. Rainier to the Airport",[["b"]]],[", without spending another $90 to take the shuttle from Olympia to SeaTac. (Don’t worry, there’s still another charter bus that goes back to Olympia)"]]},"created_time":1685577507352,"last_edited_time":1685577582237,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"684b67f7-5e3d-406e-a87a-e22a32674ecc":{"value":{"id":"684b67f7-5e3d-406e-a87a-e22a32674ecc","version":1094,"type":"text","properties":{"title":[["Summary: Spend $100 to hike Mt. Rainier to hike with us… then go straight to the airport with no additional bus fees! You basically either pay for hiking, or pay for the Airport bus."]]},"created_time":1685577314715,"last_edited_time":1685577747216,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"c9de8d3f-86fc-49fe-9e15-15cc6f4d6c64":{"value":{"id":"c9de8d3f-86fc-49fe-9e15-15cc6f4d6c64","version":5,"type":"text","properties":{"title":[["Your $100 contribution pays for bus chartering fees, park fees, and an awesome BBQ lunch box we’re prepping for the mountain!!"]]},"created_time":1685577651198,"last_edited_time":1685577651201,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b8b59d77-85c7-4028-a5fe-b42d13701773":{"value":{"id":"b8b59d77-85c7-4028-a5fe-b42d13701773","version":244,"type":"divider","created_time":1685577068046,"last_edited_time":1685577069011,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"278a0c04-c3f4-46c4-a0a9-0e70ca0d8443":{"value":{"id":"278a0c04-c3f4-46c4-a0a9-0e70ca0d8443","version":188,"type":"text","properties":{"title":[["LAST CALL for Early Bird",[["b"],["s"]]],[" — now officially ends May 29!",[["s"]]],[" All the early bird worms have been eaten! (You save $150 off the full price, so get it while it’s 🐣🪱)"]]},"created_time":1684335148540,"last_edited_time":1685577128981,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"649e62ae-49b2-4140-b458-1eb941f38e51":{"value":{"id":"649e62ae-49b2-4140-b458-1eb941f38e51","version":18,"type":"divider","created_time":1685057308489,"last_edited_time":1685057309338,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"851d6bce-4c8a-4a87-9b73-f290bc902193":{"value":{"id":"851d6bce-4c8a-4a87-9b73-f290bc902193","version":1102,"type":"text","properties":{"title":[["SEA Airport to Evergreen Transport:",[["b"]]],[" We recommend using "],["Premier Airport Shuttle",[["a","https://premierairportshuttle.com/reservations/?_macode=PHAGE"]]],[" (Promo code “PHAGE”) — Super easy to input flight info, SEA to Evergreen State College (TESC A-Dorm). The cost for the shuttle is $93.10 USD for one person - each additional passenger fare is $8 to $9 up to 4 in a group. (Total cost for 4 passengers is only $118.10, so we suggest finding travel buddies!). Travel alternatives - Uber or similar. Bus and Light rail is also an option, but we don’t recommend it unless you travel with only a backpack."]]},"created_time":1685057309333,"last_edited_time":1686789850484,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"7efe8c53-52ea-4e81-8810-7ceefeea535f":{"value":{"id":"7efe8c53-52ea-4e81-8810-7ceefeea535f","version":22,"type":"divider","created_time":1683348107712,"last_edited_time":1684361584297,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"68f1d8a0-d3d4-49ff-9be6-23e5e7312410":{"value":{"id":"68f1d8a0-d3d4-49ff-9be6-23e5e7312410","version":355,"type":"text","properties":{"title":[["May 8 Note",[["b"]]],[": All problems with Stripe, our payment processor, have been resolved. It was a case of algorithmic confusion on Stripe’s part."]]},"created_time":1684361584292,"last_edited_time":1684361636750,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"26af6a6f-928e-4c4f-8744-57476f0a83c9":{"value":{"id":"26af6a6f-928e-4c4f-8744-57476f0a83c9","version":18,"type":"divider","created_time":1684361617303,"last_edited_time":1684361618074,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"60bc96cd-786d-481c-82ba-7a959ef1cf9c":{"value":{"id":"60bc96cd-786d-481c-82ba-7a959ef1cf9c","version":12,"type":"image","properties":{"size":[["928.6KB"]],"title":[["evg23_twitter_dates.jpg"]],"source":[["https://s3-us-west-2.amazonaws.com/secure.notion-static.com/fbf8336f-3af0-4b81-ac63-a693b770ffcf/evg23_twitter_dates.jpg"]]},"format":{"block_width":3000,"display_source":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/fbf8336f-3af0-4b81-ac63-a693b770ffcf/evg23_twitter_dates.jpg","block_full_width":false,"block_page_width":true,"block_aspect_ratio":0.3333333333333333,"block_preserve_scale":true},"created_time":1683699145943,"last_edited_time":1683699149583,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"file_ids":["fbf8336f-3af0-4b81-ac63-a693b770ffcf"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b3a103be-5017-4bd3-91b0-212dcb8c091e":{"value":{"id":"b3a103be-5017-4bd3-91b0-212dcb8c091e","version":17,"type":"text","properties":{"title":[["Important Dates:"]]},"created_time":1683353910443,"last_edited_time":1683699120174,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"d5e166e4-1fef-43db-90b5-ac4409e6226e":{"value":{"id":"d5e166e4-1fef-43db-90b5-ac4409e6226e","version":108,"type":"bulleted_list","properties":{"title":[["Evergreen Phage Meeting: August 6-11, 2023"]]},"created_time":1683694852829,"last_edited_time":1683694884121,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"497323d3-a2d0-4789-9550-6e2b8f4c7120":{"value":{"id":"497323d3-a2d0-4789-9550-6e2b8f4c7120","version":137,"type":"bulleted_list","properties":{"title":[["Early Bird",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],[" ends "],["May 21",[["s"]]],[" "],["UPDATED: ",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],["May 29 😎"]]},"created_time":1683347074509,"last_edited_time":1684980478192,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"9ee10b2a-cf64-401d-854e-f7e435674d1e":{"value":{"id":"9ee10b2a-cf64-401d-854e-f7e435674d1e","version":178,"type":"bulleted_list","properties":{"title":[["All Abstracts due"],[" June 16. Oral abstracts due June 9.",[["b"]]]]},"created_time":1683347092829,"last_edited_time":1683353916063,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"c352cf89-5f72-429c-a9d5-7c18f277a4ad":{"value":{"id":"c352cf89-5f72-429c-a9d5-7c18f277a4ad","version":80,"type":"bulleted_list","properties":{"title":[["June 20: Oral announcement",[["b"],["b"],["b"],["b"],["b"],["b"],["b"]]]]},"created_time":1683347127166,"last_edited_time":1683353916063,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"180d4194-143f-4f83-8a28-eb3adbcc88a7":{"value":{"id":"180d4194-143f-4f83-8a28-eb3adbcc88a7","version":72,"type":"bulleted_list","properties":{"title":[["July 1: Final Call, Final Draft",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]]]},"created_time":1683347149928,"last_edited_time":1683353922858,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"6b150770-6cd2-4b43-8fe3-baff8b23ae13":{"value":{"id":"6b150770-6cd2-4b43-8fe3-baff8b23ae13","version":20,"type":"divider","created_time":1683353917423,"last_edited_time":1683353918955,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"15f88ce8-edb2-431c-95b0-b324557cc7d8":{"value":{"id":"15f88ce8-edb2-431c-95b0-b324557cc7d8","version":22,"type":"sub_sub_header","properties":{"title":[["Hi Phage Phans,"]]},"format":{"copied_from_pointer":{"id":"42ef0c54-3a47-4a55-871c-dfd568c09f29","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898503,"last_edited_time":1683354003503,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"42ef0c54-3a47-4a55-871c-dfd568c09f29","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"436b8e72-63a6-42cc-98c4-ceda3d4f7148":{"value":{"id":"436b8e72-63a6-42cc-98c4-ceda3d4f7148","version":174,"type":"text","properties":{"title":[["It’s been a long wait, it’s finally time to register for Evergreen 2023! "]]},"format":{"copied_from_pointer":{"id":"df882008-9b31-44be-bcc2-81f81aea1f16","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898503,"last_edited_time":1683353957401,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"df882008-9b31-44be-bcc2-81f81aea1f16","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"4f1c5b2f-9900-4d24-9c22-78ba47674d91":{"value":{"id":"4f1c5b2f-9900-4d24-9c22-78ba47674d91","version":348,"type":"text","properties":{"title":[["This year’s Evergreen is special. This is the 50th year of Evergreen. The 25th Biennial Evergreen"],[" ",[["i"]]],["Phage Meeting. "]]},"created_time":1683353957400,"last_edited_time":1683705121953,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"2dc26b6a-4703-47ca-8d5f-2a2bd9ac7540":{"value":{"id":"2dc26b6a-4703-47ca-8d5f-2a2bd9ac7540","version":5,"type":"text","properties":{"title":[["This year, we’re celebrating Betty’s legacy."]]},"created_time":1683353997632,"last_edited_time":1683353997635,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"e6bbf137-2947-4a6a-9aee-bdcb448d1339":{"value":{"id":"e6bbf137-2947-4a6a-9aee-bdcb448d1339","version":67,"type":"sub_header","properties":{"title":[["FIFTY YEARS OF EVERGREEN, y’all!",[["i"],["i"],["i"],["i"],["i"],["i"],["i"],["i"],["i"],["i"],["i"],["i"]]]]},"created_time":1683346878234,"last_edited_time":1683354150292,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"afa944bb-426d-47a4-b6e6-dfb96555e29e":{"value":{"id":"afa944bb-426d-47a4-b6e6-dfb96555e29e","version":738,"type":"text","properties":{"title":[["This year we are celebrating Betty and her life’s accomplishments and achievements. "]]},"created_time":1683346603035,"last_edited_time":1683348138703,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"a895429c-33c2-4c55-b3f0-f7a04a9916f6":{"value":{"id":"a895429c-33c2-4c55-b3f0-f7a04a9916f6","version":849,"type":"text","properties":{"title":[["Many of us are in the phage field (including me and Jessica!) directly or indirectly because of Evergreen Phage Meeting, and from Betty’s decades of tireless efforts to help early career researchers into the field. This year we’re coming together to celebrate her legacy, and her achievements."]]},"created_time":1683346917076,"last_edited_time":1683704909161,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"afe31e9c-23eb-4949-bcb9-95a981ade393":{"value":{"id":"afe31e9c-23eb-4949-bcb9-95a981ade393","version":922,"type":"text","properties":{"title":[["Plus, we’re planning: Movie Night featuring "],["Salt in My Soul",[["i"],["a","https://saltinmysoulbook.com/"]]],[" with a Q&A with Mallory’s parents, Game Night featuring a special "],["phage-defence card game by the Nobrega Lab, a Scavenger Hunt organiz by TAILOR Labs… ",[["i"],["i"],["i"],["i"],["i"],["i"]]],["in addition to Dance Night, Traditional Salmon Bake Dinner, and Mt. Rainier hiking day. "]]},"format":{"copied_from_pointer":{"id":"4f6142f0-daa5-4a32-82d1-d56eb8a6e87f","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898508,"last_edited_time":1683705503179,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"4f6142f0-daa5-4a32-82d1-d56eb8a6e87f","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"c4b139b6-55ea-412d-8743-34c75b509712":{"value":{"id":"c4b139b6-55ea-412d-8743-34c75b509712","version":417,"type":"text","properties":{"title":[["Of course, we’re going to have some awesome bioinformatics (and data engineering!) workshops to kick off the event, as well as many late nights filled with science chatter."]]},"created_time":1683694301330,"last_edited_time":1683694344944,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"c381373b-9a51-4ed5-80b2-a1b090dfcc12":{"value":{"id":"c381373b-9a51-4ed5-80b2-a1b090dfcc12","version":160,"type":"text","properties":{"title":[["I can’t tell you how excited I am for this! Jessica and I are flying from Sydney to Olympia just for this very special — and quite possibly the last ever — Evergreen."]]},"created_time":1683346800877,"last_edited_time":1683694411482,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"a5f9560a-e225-41ab-83fb-118e90aad9ea":{"value":{"id":"a5f9560a-e225-41ab-83fb-118e90aad9ea","version":42,"type":"text","properties":{"title":[["Hope to see you all there, phage phriends!!"]]},"created_time":1683346816378,"last_edited_time":1683348138703,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"06361fe9-92a3-47ee-a651-13bc69caee32":{"value":{"id":"06361fe9-92a3-47ee-a651-13bc69caee32","version":22,"type":"text","properties":{"title":[["— Jan"]]},"created_time":1683346091626,"last_edited_time":1683348291888,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"adc8db2b-cfc2-4849-80b6-b8a9aac18d4d":{"value":{"id":"adc8db2b-cfc2-4849-80b6-b8a9aac18d4d","version":484,"type":"text","properties":{"title":[["p.s. Please help us spread the word by setting your Twitter / Facebook / Linkedin cover photo to "],["our Evergreen banners",[["a","https://notion.so/image/https%3A%2F%2Ff2.phage.directory%2Fairscripts%2F-evergreen-2023-live%2Fcontent%2FrectaUjlWh18lEZzG%2Fevg23_twitter_2x.jpg?table=block&id=c2c4ffce-d205-4b65-b6aa-16bd927b31b4"]]],["! You can "],["find more images on our Media page",[["a","https://evergreen.phage.directory/media"]]],["."]]},"created_time":1683348187978,"last_edited_time":1683693948497,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b13b7f16-daf5-449d-bc88-be7bd8cef379":{"value":{"id":"b13b7f16-daf5-449d-bc88-be7bd8cef379","version":19,"type":"divider","format":{"copied_from_pointer":{"id":"03a43806-afe0-499d-8ecd-e83b4ffe8f29","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898509,"last_edited_time":1683348150506,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"03a43806-afe0-499d-8ecd-e83b4ffe8f29","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"6f844d00-a15f-4ea7-877f-93cdc5486ddd":{"value":{"id":"6f844d00-a15f-4ea7-877f-93cdc5486ddd","version":165,"type":"sub_sub_header","properties":{"title":[["Registration is Live!"]]},"format":{"copied_from_pointer":{"id":"7acd3b9a-2d5d-4793-a0ec-08da32147eb7","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898504,"last_edited_time":1683353243084,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"7acd3b9a-2d5d-4793-a0ec-08da32147eb7","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"4d7cb2dd-d098-440e-8617-3b6fd252c4a6":{"value":{"id":"4d7cb2dd-d098-440e-8617-3b6fd252c4a6","version":1522,"type":"text","properties":{"title":[["As you’ve probably noticed, Evergreen is quite a bit more expensive this year. This is because this is the first year we’re 100% independent of the Evergreen State College. This means that we don’t receive any monetary support from the College anymore, and are now completely self-funded and self-supported, by sponsors and by the Phagebiotics Foundation. As such, things cost a bit more for us to run, and unfortunately we’ll need to raise prices to cover the costs. 100% of proceeds go to running the program, paying for venues, hiring buses, and running the show."]]},"created_time":1683353243623,"last_edited_time":1683353398102,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"96692c45-aaf3-4608-b066-3745a8b15633":{"value":{"id":"96692c45-aaf3-4608-b066-3745a8b15633","version":4,"type":"text","properties":{"title":[["Hit the "],["Big Green Register for Evergreen ",[["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"],["b"]]],["button (or submit your abstract) to register!"]]},"format":{"copied_from_pointer":{"id":"7acd3b9a-2d5d-4793-a0ec-08da32147eb7","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898504,"last_edited_time":1683353234721,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"7acd3b9a-2d5d-4793-a0ec-08da32147eb7","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"20bb17be-5a38-4a04-b3d4-b7c62640aa62":{"value":{"id":"20bb17be-5a38-4a04-b3d4-b7c62640aa62","version":96,"type":"text","properties":{"title":[["For "],["group registration discounts,",[["b"]]],[" "],["scholarships and sponsorships:",[["b"]]],[" Email Ria at tescphage@gmail.com. Send bugs and technical problems to Jan at jan@phage.directory"]]},"format":{"copied_from_pointer":{"id":"7f2977ca-a0af-46cd-96cc-a88b353bd7c9","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1683345898505,"last_edited_time":1683346271432,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"copied_from":"7f2977ca-a0af-46cd-96cc-a88b353bd7c9","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"6f5442f4-04bd-4b2f-b3ca-6f4e45425496":{"value":{"id":"6f5442f4-04bd-4b2f-b3ca-6f4e45425496","version":143,"type":"text","properties":{"title":[["Send any other questions → Ria at tescphage@gmail.com"]]},"created_time":1683346855652,"last_edited_time":1683353891627,"parent_id":"2261b897-101d-410d-8537-2b7a073a2b5a","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/5e959ef215cfb932bde3f44622b8a617bca6310166b022298eda6d242693696000023b96bc896e86 b/.wrangler/state/v3/cache/default/blobs/5e959ef215cfb932bde3f44622b8a617bca6310166b022298eda6d242693696000023b96bc896e86 new file mode 100644 index 0000000..c189582 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/5e959ef215cfb932bde3f44622b8a617bca6310166b022298eda6d242693696000023b96bc896e86 @@ -0,0 +1 @@ +{"rows":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"Quadram Institute, UK","Speaker":"Instructor: Evelien Adriaenssens","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"Viromics: Viral community analysis with metagenomics"},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"TAILOR Labs, Baylor College of Medicine","Speaker":"Instructor: Justin Clark ","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["0cd38da4-0919-4b69-bb95-3d9a6c8ae352"],"Event":"Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"BBQ Welcome lunch at Evergreen"},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Speaker":"Instructor: Ramy Aziz & Rebecca Wattam","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["c90b69ff-e994-403b-b885-59871db7734c"],"Event":"TBA (Genomics/PATRIC)"},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Affiliation":"Phages for Global Health","Speaker":"Instructor: Tobi Nagel & Fran Hodges","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["72bc1da3-cc5a-4293-8f3c-a8de212cf1ea"],"Event":"TBA (Biobanking)"},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"},"Session":"Pre-conference workshop","Time":"6:30 PM - 8:30 PM","Event":"(TBC) Workshop Extension"},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Poster Session","Time":"6:00 PM - 9:00 PM","Event":"Informal Poster Session "},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Social/Fun!","Time":"6:00 PM - 9:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"},"Location":"Purce Hall","Session":"Session 1: Plenary talks","Event":"Session 1: Plenary talks"},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":"Monday","Length of talk":["15 min"],"Session":"Session 1: Plenary talks","Time":"8:30 AM - 8:45 AM","Event":"Phagebiotics Welcome!"},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Martin Loessner","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"8:45 AM - 9:05 AM","Name of speaker":["be36f174-7518-499c-aa4c-4fe8c08ecfd1"],"Event":"Bacteriophages by design: tiny killers and smart detectives"},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Quadram Institute Bioscience","Speaker":"Evelien Adriaenssens","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"9:05 AM - 9:25 AM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"What’s going on with phage taxonomy and is it really necessary?"},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"},"Speaker":"Chair: Teagan Brown & TBA","Location":"Purce Hall","Session":"Session 2: Ecology & Informatics I","Event":"Session 2: Ecology & Informatics I"},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Lawrence Livermore National Laboratory, Livermore, CA","Speaker":"Gary Trubl","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:25 AM - 9:45 AM","Name of speaker":["cd337cdc-ca59-4f9e-a083-1b1f68fd180b"],"Event":"Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Harvard Medical School","Speaker":"Sian Owen","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:45 AM - 10:05 AM","Name of speaker":["3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c"],"Event":"Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Location":"CAB","Session":"Session 2: Ecology & Informatics I","Time":"10:05 AM - 10:25 AM","Event":"Break"},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Globe Institute, University of Copenhagen, Denmark","Speaker":"Thomas Sicheritz-Pontén","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"10:25 AM - 10:45 AM","Name of speaker":["b06e9b76-ff8a-432b-86e7-029a793897b3"],"Event":"Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University at Buffalo","Speaker":"Kathryn Kauffman","Session":"Session 2: Ecology & Informatics I","Time":"10:45 AM - 11:05 AM","Name of speaker":["49b79643-2347-4528-a497-8f4ed336c33a"],"Event":"Uncovering the roles of phages in the oral microbiome"},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jan Zheng","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:05 AM - 11:25 AM","Name of speaker":["5649ff80-cad7-451f-9b55-d297f1563090"],"Event":"Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phase Genomics, Inc.","Speaker":"Benjamin Auch","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:25 AM - 11:40 PM","Name of speaker":["93d533c0-875c-42c2-9a85-79199379e203"],"Event":"Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Genetics, Stanford University, Stanford, CA, USA","Speaker":"Yishay Pinto","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:40 AM - 11:55 AM","Name of speaker":["8df4db71-3c5c-40e0-9f4e-4671e81dbc71"],"Event":"Phage-inclusive profiling of human gut microbiomes with Phanta"},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":"Monday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 3: Phage defense","Event":"Session 3: Phage defense"},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University of Otago, New Zealand","Speaker":"Peter Fineran","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:00 PM - 1:20 PM","Name of speaker":["ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef"],"Event":"Anti-CRISPR strategies and their regulation"},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"School of Biological Sciences, University of Southampton, United Kingdom","Speaker":"Franklin Nobrega","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:20 PM - 1:40 PM","Name of speaker":["2a748a12-8f17-4a75-80e4-6c5e5752effb"],"Event":"Co-occurrence and synergism of anti-phage defence systems"},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Biology, McMaster University, Hamilton, Canada","Speaker":"Leah Sather","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:40 PM - 1:55 PM","Name of speaker":["0210e1bb-0c5e-4db7-9169-44a85b61799c"],"Event":"Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"School of Biological Sciences","Speaker":"Thomas Todeschini","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:55 PM - 2:10 PM","Name of speaker":["fa7afdac-7554-4588-91c2-b3543ed1f35d"],"Event":"Kiwa modulates host nuclease activity for anti-viral defense"},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Xu Peng","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"2:10 PM - 2:25 PM","Name of speaker":["3a70c9b0-883f-411e-aeff-63e1b91c6175"],"Event":"How archaeal viruses inhibit host CRISPR-Cas immunity"},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Time":"2:25 PM - 2:45 PM","Event":"Break"},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"},"Speaker":"Chair: Sandra Morales & TBA","Location":"Purce Hall","Session":"Session 4: Phage therapy I","Event":"Session 4: Phage therapy I"},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD","Speaker":"Scott Stibitz","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"2:45 PM - 3:05 PM","Name of speaker":["55bdd695-7c84-4da3-a08d-6b35cc79895b"],"Event":"Regulation of Phage Therapy by the FDA: CMC topics"},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phage Consulting, Sydney, New South Wales, Australia","Speaker":"Sandra Morales","Session":"Session 4: Phage therapy I","Time":"3:05 PM - 3:20 PM","Name of speaker":["ab627c93-11a9-4ef0-8deb-fa80f49f4a80"],"Event":"TBA (Phage therapy overview)"},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Queen Astrid Military Hospital, Belgium","Speaker":"Jean-Paul Pirnay","Session":"Session 4: Phage therapy I","Time":"3:20 PM - 3:40 PM","Name of speaker":["f3401535-46c5-44ba-852a-cf31eaaf7818"],"Event":"TBA (Phage therapy experience in Belgium)"},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Yale University, USA","Speaker":"Benjamin Chan","Session":"Session 4: Phage therapy I","Time":"3:40 PM - 3:55 PM","Name of speaker":["8a9e19e8-f881-437b-8c9e-594d07a25d95"],"Event":"TBA (Phage therapy experience at Yale)"},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Austen Terwilliger","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"3:55 PM - 4:15 PM","Name of speaker":["71c70747-235c-4e79-a22c-8764e7076ccd"],"Event":"A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":"Monday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":"Monday","Session":"Special Session","Time":"5:30 PM & 6:00 PM buses","Event":"Head to bus depot and go downtown to movie theater"},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"},"Speaker":"Panel: Martha Clokie, Diane Shader Smith, & more TBA. ","Location":"Downtown Olympia","Session":"Special Session","Time":"7:00 PM - 9:30 PM","Event":"Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":"Monday","Session":"Special Session","Time":"9:30 PM, 10:15 PM, 11 PM buses","Event":"Buses back to Evergreen"},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"},"Speaker":"Chair: Gina Suh & TBA","Location":"Purce Hall","Session":"Session 5: Phage therapy II","Event":"Session 5: Phage therapy II"},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":"Tuesday","Length of talk":["10 min."],"Session":"Session 5: Phage therapy II","Time":"8:30 AM - 8:40 AM","Event":"Introduction to keynote"},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":"Tuesday","Length of talk":["60 min."],"Speaker":"[Keynote] Diane Shader Smith","Session":"Session 5: Phage therapy II","Time":"8:40 AM - 9:40 AM","Name of speaker":["c6f82a66-2bb7-4431-8cb8-6ded07aa301c"],"Event":"Keynote TBA (Phage therapy patient/parent experience)"},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jessica Sacher","Accepted in airtable":true,"Session":"Session 5: Phage therapy II","Time":"9:40 AM - 10:00 AM","Name of speaker":["745163f6-a397-4a4c-b4cb-154e2ef458a9"],"Event":"Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"University of Toronto","Speaker":"Greg German","Session":"Session 5: Phage therapy II","Time":"10:00 AM - 10:20 AM","Name of speaker":["099bc17c-8582-473b-97c2-1b14f1c8a444"],"Event":"TBA (Phage therapy experience in Canada)"},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":"Tuesday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":"Tuesday","Length of talk":["15 min"],"Speaker":"Talk - Chris Shafer ","Accepted in airtable":false,"Session":"Session 5: Phage therapy II","Time":"10:40 AM - 10:55 AM","Name of speaker":["cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7"],"Event":"TBA (Patient experience)"},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":"Tuesday","Length of talk":["5 min"],"Session":"Session 5: Phage therapy II","Time":"10:55 AM - 11:00 AM","Event":"Introduction to keynote"},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":"Tuesday","Length of talk":["60 min."],"Affiliation":"IPATH, UCSD","Speaker":"[Keynote] Steffanie Strathdee","Session":"Session 5: Phage therapy II","Time":"11:00 AM - 12:00 PM","Name of speaker":["db83cbad-3504-4120-8eb2-a9e9f588fb29"],"Event":"TBA (Phage therapy experience in San Diego)"},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 6: Understanding & improving phage therapy","Event":"Session 6: Understanding & improving phage therapy"},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"IPATH, UCSD","Speaker":"Katrine Whiteson","Session":"Session 6: Understanding & improving phage therapy","Time":"1:00 PM - 1:20 PM","Name of speaker":["9dce44b9-3367-4c00-91b7-147e7554c75c"],"Event":"Better together: Phage cocktails constrain the growth of Enterococcus"},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium","Speaker":"Sabrina Green","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:20 PM - 1:40 PM","Name of speaker":["dddc50d1-cf21-42a5-99b9-b265b09b51d2"],"Event":"Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD","Speaker":"Kevin Burke","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:40 PM - 1:55 PM","Name of speaker":["e2672fc8-3000-4de3-b372-baa29bff31cb"],"Event":"Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, CA 92182, USA","Speaker":"Tiffany Luong","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:55 PM - 2:10 PM","Name of speaker":["70862f59-9b2b-498e-a110-eca0fa064e94"],"Event":"Lost in circulation: Improving the in vivo activity of phage cocktails"},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany","Speaker":"Magdalena Unterer","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:10 PM - 2:25 PM","Name of speaker":["9e27a8ec-a3b8-4167-9217-d7f4c8bc9008"],"Event":"Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Rime Bioinformatics SAS, Palaiseau, France","Speaker":"Antoine Culot","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:25 PM - 2:40 PM ","Name of speaker":["fc603774-7a1b-4ee5-987e-37afce4b85bd"],"Event":"Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Jiemin Du","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:40 PM - 2:55 PM","Name of speaker":["e757271b-ff33-407a-89b8-8cd37f0d9f7f"],"Event":"Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":"Tuesday","Length of talk":["20 min"],"Time":"2:55 PM - 3:15 PM","Event":"Break"},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD","Speaker":"Susan Lehman","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:15 PM - 3:35 PM","Name of speaker":["e868601c-0a86-4534-862a-feea152760d9"],"Event":"A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA","Speaker":"Katarzyna Danis-Włodarczyk","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:35 PM - 3:50 PM","Name of speaker":["46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4"],"Event":"Topical phage treatment of a P. aeruginosa mouse wound-infection model"},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA","Speaker":"Qingquan (Kevin) Chen","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:50 PM - 4:05 PM","Name of speaker":["be03672d-3029-461b-81ca-9fa90eb3248b"],"Event":"Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland","Speaker":"Gregory Resch","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:05 PM - 4:25 PM","Name of speaker":["e9bd9655-a26e-48a5-9afb-16ba0082c88f"],"Event":"Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA","Speaker":"Paul Bollyky","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:25 PM - 4:45 PM","Name of speaker":["99674cc4-e81f-45a2-912b-50cefd63c4e9"],"Event":"Circulating bacteriophages can identify bacterial pathogens in human infections"},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":"Tuesday","Session":"Poster Session","Time":"6:00 PM - 7:00 PM","Event":"Informal Poster session "},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":"Tuesday","Length of talk":["120 min"],"Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"},"Speaker":"Evergreen Chronology of Inspiration Panel","Location":"Purce Hall","Session":"Special Session","Time":"7:00 PM - 9:00 PM","Event":"TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":"Tuesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Celebration/Dancing"},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 7: Phage and the immune system","Event":"Session 7: Phage and the immune system"},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, USA","Speaker":"Dwayne Roach","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:30 AM - 8:50 AM","Name of speaker":["47154f21-f3d7-4f67-bc63-044dcd457522"],"Event":"The Viral Immunogenicity of Clinically Relevant Bacteriophages"},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland","Speaker":"Krystyna Dabrowska","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:50 AM - 9:10 AM","Name of speaker":["d043af99-31e1-4899-b2d6-e7aebfb09289"],"Event":"PhageScan: identification of major phage epitopes that are immunogenic for humans"},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Philip Lauman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:10 AM - 9:25 AM","Name of speaker":["a5125779-3bd8-4770-9ddd-a7de0bfec554"],"Event":"O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"College of Life and Environmental Sciences, University of Exeter","Speaker":"Meaghan Castledine","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:25 AM - 9:40 AM","Name of speaker":["e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0"],"Event":"Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Léa Zinsli","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:40 AM - 9:55 AM","Name of speaker":["cc428e33-a0a8-427d-a52c-e16bf7a5b030"],"Event":"Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA","Speaker":"Thomas Smytheman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:55 AM - 10:15 AM","Name of speaker":["8fdd1c46-143b-40aa-8887-ff385fcbff06"],"Event":"Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":"Wednesday","Length of talk":["20 min"],"Time":"10:15 AM - 10:35 AM","Event":"Break"},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 8: Molecular phage biology I","Event":"Session 8: Molecular phage biology I"},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA","Speaker":"Vivek Mutalik","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:35 AM - 10:55 AM","Name of speaker":["26635071-15db-4630-aed0-709d6a5af51e"],"Event":"Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Enea Maffei","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:55 AM - 11:10 AM","Name of speaker":["da86622d-2762-4d2d-8b1d-c500e44dd712"],"Event":"Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Carmen Gu Liu","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:10 AM - 11:25 AM","Name of speaker":["1a4a441d-ee6b-45c9-8b84-0c60dd412cbe"],"Event":"Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany","Speaker":"Jordan Romeyer Dherbey","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:25 AM - 11:40 AM","Name of speaker":["b3d03715-7585-46a6-b31d-98440b9c5a86"],"Event":"Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":"Wednesday","Length of talk":["10 min."],"Affiliation":"ICMR- National Institute of Cholera and Enteric Diseases","Speaker":"Bani Mallick","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:40 AM - 11:50 AM","Name of speaker":["909c2508-9568-4ba0-85b8-10247ee7f7fc"],"Event":"Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":"Wednesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"},"Speaker":"Chair: Michael Koeris","Location":"Purce Hall","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Event":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":"Wednesday","Length of talk":["20 min"],"Speaker":"Michael Koeris","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:00 PM - 1:20 PM","Name of speaker":["a3dd1393-507a-4b0f-890f-c2dae8a37e70"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"PhagePro, Inc","Speaker":"Minmin Yen","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:20 PM - 1:35 PM","Name of speaker":["a7b77d41-ff9a-4650-9e3f-d4d70015a202"],"Event":"Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Locus Biosciences","Speaker":"Nick Conley","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:35 PM - 1:50 PM","Name of speaker":["3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Dominic Sauvageau","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:50 PM - 2:05 PM","Name of speaker":["13ce51a7-4f96-4116-b462-45503a847bec"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"},"Session":"Social/Fun!","Time":"2:05 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":"Wednesday","Location":"TBA","Session":"Food!","Time":"5:00 PM - 7:00 PM","Event":"Dinner (TBA)"},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"},"Session":"Poster Session","Time":"7:00 PM - 9:00 PM","Event":"Formal Poster Session/Mixer I"},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"},"Session":"Social/Fun!","Time":"6:30 PM - ?","Event":"Phage sculpture building"},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Dancing "},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 10: Ecology & Informatics II","Event":"Session 10: Ecology & Informatics II"},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":"Thursday","Length of talk":["20 min"],"Speaker":"Ryan Cook","Session":"Session 10: Ecology & Informatics II","Time":"8:30 AM - 8:50 AM","Name of speaker":["3382a9f0-80c5-473c-9528-80821b7dd0f6"],"Event":"TBA (Phage ecology)"},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Leicester","Speaker":"Sophie Harrison","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"8:50 AM - 9:05 AM","Name of speaker":["c69f71c3-ecf0-439e-af81-b6429d26e631"],"Event":"Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology and Immunology, McGill University, Montreal, Canada","Speaker":"Michael Shamash","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"9:05 AM - 9:20 AM","Name of speaker":["6bb08bf3-d20b-403c-8138-58a25cb2c6d0"],"Event":"Gut virome colonization dynamics in a humanized mouse model of early life development"},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":"Thursday","Length of talk":["60 min."],"Speaker":"[Keynote] Martha Clokie","Accepted in airtable":false,"Session":"Session 10: Ecology & Informatics II","Time":"9:20 AM - 10:20 AM","Name of speaker":["26ff67d0-686a-4347-a52e-f0c6a08d52e3"],"Event":"TBA"},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":"Thursday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"},"Speaker":"Chair: Hany Anany & TBA","Location":"Purce Hall","Session":"Session 11: Phage in food and agriculture","Event":"Session 11: Phage in food and agriculture"},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"KU Leuven, Belgium","Speaker":"Jeroen Wagemans","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"10:40 AM - 11:00 AM","Name of speaker":["25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202"],"Event":"Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Research Scientist","Speaker":"Hany Anany","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:00 AM - 11:20 AM","Name of speaker":["99692a27-5cb0-46c6-b341-74f5d6701ad2"],"Event":"Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Department of Food Science, University of Tennessee, Knoxville, TN","Speaker":"Thomas Denes","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:20 AM - 11:40 AM","Name of speaker":["5d4dea8f-f420-4179-9773-78fcd7929c63"],"Event":"Overcoming hurdles for phage applications in food safety with directed evolution"},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"SCIPHAGE","Speaker":"Viviana Clavijo","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:40 AM - 11:55 AM","Name of speaker":["81f9417a-d86c-4e6b-b125-481ad425ca35"],"Event":"SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":"Thursday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 12: Molecular phage biology II","Event":"Session 12: Molecular phage biology II"},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Max Planck Institute for Terrestrial Microbiology, Marburg, Germany","Speaker":"Katharina Höfer","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:00 PM - 1:20 PM","Name of speaker":["f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae"],"Event":"Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Janine Bowring","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:20 PM - 1:35 PM","Name of speaker":["03894d69-8250-477b-bdb9-279325e1db10"],"Event":"Genomic mobilisation by rRNA operon recombination – another route of phage transduction"},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"School of Life Sciences, University of Warwick, Coventry, UK","Speaker":"Rebecca Quinn","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:35 PM - 1:50 PM","Name of speaker":["163cfe1e-0c11-4f53-ae42-d91dd3a1d516"],"Event":"Phage tRNAs Subvert Host Resistance"},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia","Speaker":"Valentina Andrea Floccari","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:50 PM - 2:05 PM","Name of speaker":["24959fbb-214c-49cb-aac7-573850ffcc34"],"Event":"Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Biology, University of Idaho","Speaker":"Tracey Peters","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:05 PM - 2:20 PM","Name of speaker":["7d737977-f461-42e3-b38d-44612cf790c4"],"Event":"Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Department of Medicine, McMaster University","Speaker":"Gayatri Nair","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:20 PM - 2:30 PM","Name of speaker":["f90b3af0-02da-4596-8063-5fb6fbbb1b59"],"Event":"Biasing Bacteriophage Behaviour"},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada","Speaker":"Jieting Lin","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:30 PM - 2:40 PM","Name of speaker":["a61583c9-528b-4adc-962e-e6a287b2c676"],"Event":"Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":"Thursday","Length of talk":["15 min"],"Session":"Session 12: Molecular phage biology II","Time":"2:40 PM - 2:55 PM","Event":"Closing Remarks / Future Meeting"},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Poster Session","Time":"3 PM - 5:00 PM","Event":"Formal Poster Session/Mixer II "},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Social/Fun!","Time":"3 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt: Hike to beach"},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":"Thursday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"},"Location":"Olympia","Session":"Social/Fun!","Time":"5 PM - 9:00 PM","Event":"Adventure out into Olympia for dinner and an evening on the water. "},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":"Friday","Date & Time":{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"},"Session":"Social/Fun!","Event":"Mt. Rainier hike!"}],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["Quadram Institute, UK"]],"LQJ@":[["Instructor: Evelien Adriaenssens"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Viromics: Viral community analysis with metagenomics"]]},"created_time":1687798566572,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","version":492,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["TAILOR Labs, Baylor College of Medicine"]],"LQJ@":[["Instructor: Justin Clark "]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},"created_time":1687798566573,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"320fbd52-2c2b-475f-b2da-07864683da29","version":285,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:30 - 1:30 PM"]],"title":[["BBQ Welcome lunch at Evergreen"]]},"created_time":1687803510356,"last_edited_time":1689391195918,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","version":391,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"LQJ@":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Genomics/PATRIC)"]]},"created_time":1687798574821,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","version":423,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"B:Eq":[["Phages for Global Health"]],"LQJ@":[["Instructor: Tobi Nagel & Fran Hodges"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Biobanking)"]]},"created_time":1687798577371,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","version":188,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687799240915,"last_edited_time":1689391199074,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","version":121,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["6:30 PM - 8:30 PM"]],"title":[["(TBC) Workshop Extension"]]},"created_time":1689380004207,"last_edited_time":1689391180080,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","version":441,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:30 PM"]],"title":[["Informal Poster Session "]]},"created_time":1687803348235,"last_edited_time":1689390202574,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","version":153,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1687803491538,"last_edited_time":1689390204139,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","version":155,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 1: Plenary talks"]],"title":[["Session 1: Plenary talks"]]},"created_time":1689384912122,"last_edited_time":1689390237972,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","version":238,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:30 AM - 8:45 AM"]],"~Dke":[["8:30 AM"]],"title":[["Phagebiotics Welcome!"]]},"created_time":1687799401390,"last_edited_time":1689390207153,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9914254b-f117-427d-a18e-942c13978d1a","version":281,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Martin Loessner"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:45 AM - 9:05 AM"]],"zo?d":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:45 AM"]],"title":[["Bacteriophages by design: tiny killers and smart detectives"]]},"created_time":1687799405505,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","version":253,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Quadram Institute Bioscience"]],"LQJ@":[["Evelien Adriaenssens"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["9:05 AM - 9:25 AM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1015"]],"title":[["What’s going on with phage taxonomy and is it really necessary?"]]},"created_time":1688512415031,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","version":165,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"LQJ@":[["Chair: Teagan Brown & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"title":[["Session 2: Ecology & Informatics I"]]},"created_time":1689385218335,"last_edited_time":1689390232321,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","version":200,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"LQJ@":[["Gary Trubl"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:25 AM - 9:45 AM"]],"zo?d":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1035"]],"title":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},"created_time":1687825729361,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","version":178,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Harvard Medical School"]],"LQJ@":[["Sian Owen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:45 AM - 10:05 AM"]],"zo?d":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1055"]],"title":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},"created_time":1689054446060,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","version":233,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"Mf`v":[["CAB"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:05 AM - 10:25 AM"]],"~Dke":[["10:05 AM"]],"title":[["Break"]]},"created_time":1687799413680,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","version":301,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Globe Institute, University of Copenhagen, Denmark"]],"LQJ@":[["Thomas Sicheritz-Pontén"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:25 AM - 10:45 AM"]],"zo?d":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},"created_time":1687799423553,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","version":323,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University at Buffalo"]],"LQJ@":[["Kathryn Kauffman"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:45 AM - 11:05 AM"]],"zo?d":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["2"]],"title":[["Uncovering the roles of phages in the oral microbiome"]]},"created_time":1688512413646,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","version":324,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jan Zheng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:05 AM - 11:25 AM"]],"zo?d":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},"created_time":1688512659324,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","version":340,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phase Genomics, Inc."]],"LQJ@":[["Benjamin Auch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:25 AM - 11:40 PM"]],"zo?d":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1145"]],"title":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},"created_time":1688087779835,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","version":397,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Yishay Pinto"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1130"]],"title":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},"created_time":1688087778316,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"43b54100-7643-4867-8231-1727a947cd4d","version":169,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12-1"]],"title":[["Lunch"]]},"created_time":1687799445188,"last_edited_time":1689391206119,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","version":35,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 3: Phage defense"]],"title":[["Session 3: Phage defense"]]},"created_time":1689385244780,"last_edited_time":1689390383379,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","version":311,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Otago, New Zealand"]],"LQJ@":[["Peter Fineran"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1025"]],"title":[["Anti-CRISPR strategies and their regulation"]]},"created_time":1688509096732,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","version":310,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"LQJ@":[["Franklin Nobrega"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1045"]],"title":[["Co-occurrence and synergism of anti-phage defence systems"]]},"created_time":1687799437045,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","version":242,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, McMaster University, Hamilton, Canada"]],"LQJ@":[["Leah Sather"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1105"]],"title":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},"created_time":1687799411405,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","version":320,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Biological Sciences"]],"LQJ@":[["Thomas Todeschini"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1120"]],"title":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},"created_time":1687799425372,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","version":295,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Xu Peng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1135-1150"]],"title":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},"created_time":1687799439413,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","version":235,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"pjT:":[["2:25 PM - 2:45 PM"]],"~Dke":[["2:40"]],"title":[["Break"]]},"created_time":1687803199153,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","version":69,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"LQJ@":[["Chair: Sandra Morales & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 4: Phage therapy I"]],"title":[["Session 4: Phage therapy I"]]},"created_time":1689385265953,"last_edited_time":1689390405405,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","version":244,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"LQJ@":[["Scott Stibitz"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["2:45 PM - 3:05 PM"]],"zo?d":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3"]],"title":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},"created_time":1687804154218,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","version":408,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phage Consulting, Sydney, New South Wales, Australia"]],"LQJ@":[["Sandra Morales"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:05 PM - 3:20 PM"]],"zo?d":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["TBA (Phage therapy overview)"]]},"created_time":1689054379387,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","version":347,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Queen Astrid Military Hospital, Belgium"]],"LQJ@":[["Jean-Paul Pirnay"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:20 PM - 3:40 PM"]],"zo?d":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["340"]],"title":[["TBA (Phage therapy experience in Belgium)"]]},"created_time":1687825469236,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","version":304,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Yale University, USA"]],"LQJ@":[["Benjamin Chan"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:40 PM - 3:55 PM"]],"zo?d":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["4"]],"title":[["TBA (Phage therapy experience at Yale)"]]},"created_time":1688870910296,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","version":339,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Austen Terwilliger"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:55 PM - 4:15 PM"]],"zo?d":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["420-440"]],"title":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},"created_time":1687804152062,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","version":177,"type":"page","properties":{";:c\\":[["Monday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5-6"]],"title":[["Dinner"]]},"created_time":1687804161297,"last_edited_time":1689391211332,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","version":257,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["5:30 PM & 6:00 PM buses"]],"~Dke":[["6:10 PM - 7:00 PM"]],"title":[["Head to bus depot and go downtown to movie theater"]]},"created_time":1687804165074,"last_edited_time":1689391217591,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","version":542,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"LQJ@":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Mf`v":[["Downtown Olympia"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:30 PM"]],"~Dke":[["7:00 PM - 9:30 PM"]],"title":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},"created_time":1687804327137,"last_edited_time":1689390602372,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","version":135,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["9:30 PM, 10:15 PM, 11 PM buses"]],"title":[["Buses back to Evergreen"]]},"created_time":1689385721108,"last_edited_time":1689391222881,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","version":77,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"LQJ@":[["Chair: Gina Suh & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 5: Phage therapy II"]],"title":[["Session 5: Phage therapy II"]]},"created_time":1689385327067,"last_edited_time":1689390510980,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","version":158,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["10 min."]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:30 AM - 8:40 AM"]],"~Dke":[["8:30 AM"]],"title":[["Introduction to keynote"]]},"created_time":1687804872919,"last_edited_time":1689390517374,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","version":418,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Diane Shader Smith"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:40 AM - 9:40 AM"]],"zo?d":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:40"]],"title":[["Keynote TBA (Phage therapy patient/parent experience)"]]},"created_time":1687804875083,"last_edited_time":1689390533282,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","version":277,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jessica Sacher"]],"PvYj":[["Yes"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["9:40 AM - 10:00 AM"]],"zo?d":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940"]],"title":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},"created_time":1687803978208,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","version":339,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Toronto"]],"LQJ@":[["Greg German"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:00 AM - 10:20 AM"]],"zo?d":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["10"]],"title":[["TBA (Phage therapy experience in Canada)"]]},"created_time":1688514223660,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","version":90,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10:20 AM"]],"title":[["Break"]]},"created_time":1688510819582,"last_edited_time":1689390856637,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","version":440,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"LQJ@":[["Talk - Chris Shafer "]],"PvYj":[["No"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:40 AM - 10:55 AM"]],"zo?d":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1040"]],"title":[["TBA (Patient experience)"]]},"created_time":1688870878668,"last_edited_time":1689390547176,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","version":272,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["5 min"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:55 AM - 11:00 AM"]],"~Dke":[["1055"]],"title":[["Introduction to keynote"]]},"created_time":1687804891380,"last_edited_time":1689390854168,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","version":295,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["[Keynote] Steffanie Strathdee"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["11:00 AM - 12:00 PM"]],"zo?d":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["11am"]],"title":[["TBA (Phage therapy experience in San Diego)"]]},"created_time":1687824627233,"last_edited_time":1689390550195,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","version":96,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687824632680,"last_edited_time":1689391227320,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","version":41,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"title":[["Session 6: Understanding & improving phage therapy"]]},"created_time":1689385344622,"last_edited_time":1689390887337,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3918b591-a398-4a45-a808-38c6d79323c3","version":251,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["Katrine Whiteson"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:05 AM"]],"title":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},"created_time":1687824774421,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"11b1742c-9e64-4811-a371-6bf962e05694","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"LQJ@":[["Sabrina Green"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},"created_time":1687824793158,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","version":361,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"LQJ@":[["Kevin Burke"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["140"]],"title":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},"created_time":1687803973490,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","version":210,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"LQJ@":[["Tiffany Luong"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["155"]],"title":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},"created_time":1687825345820,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","version":466,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"LQJ@":[["Magdalena Unterer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220-235"]],"title":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},"created_time":1687799421442,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","version":298,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Rime Bioinformatics SAS, Palaiseau, France"]],"LQJ@":[["Antoine Culot"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:25 PM - 2:40 PM "]],"zo?d":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},"created_time":1689241721977,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","version":249,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Jiemin Du"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:40 PM - 2:55 PM"]],"zo?d":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["225-240"]],"title":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},"created_time":1687824771581,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["2:55 PM - 3:15 PM"]],"~Dke":[["240"]],"title":[["Break"]]},"created_time":1687824801783,"last_edited_time":1689390566824,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","version":172,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"LQJ@":[["Susan Lehman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:15 PM - 3:35 PM"]],"zo?d":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3:00"]],"title":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},"created_time":1687825464297,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","version":243,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"LQJ@":[["Katarzyna Danis-Włodarczyk"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:35 PM - 3:50 PM"]],"zo?d":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},"created_time":1687804889505,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","version":225,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"LQJ@":[["Qingquan (Kevin) Chen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:50 PM - 4:05 PM"]],"zo?d":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["335-350"]],"title":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},"created_time":1688514225625,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","version":268,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"LQJ@":[["Gregory Resch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:05 PM - 4:25 PM"]],"zo?d":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},"created_time":1687824778489,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","version":341,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Paul Bollyky"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:25 PM - 4:45 PM"]],"zo?d":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM -10:05 PM"]],"title":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},"created_time":1687824776474,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","version":66,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687825706407,"last_edited_time":1689391232151,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","version":111,"type":"page","properties":{";:c\\":[["Tuesday"]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 7:00 PM"]],"~Dke":[["6:00 PM - 7:00 PM"]],"title":[["Informal Poster session "]]},"created_time":1687825710832,"last_edited_time":1689390577528,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","version":504,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["120 min"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"LQJ@":[["Evergreen Chronology of Inspiration Panel"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},"created_time":1687825713435,"last_edited_time":1689390587466,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","version":100,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9 PM - ?"]],"title":[["Celebration/Dancing"]]},"created_time":1687825714716,"last_edited_time":1689390835462,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","version":51,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 7: Phage and the immune system"]],"title":[["Session 7: Phage and the immune system"]]},"created_time":1689385364350,"last_edited_time":1689390824571,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","version":226,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, USA"]],"LQJ@":[["Dwayne Roach"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},"created_time":1687803976098,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","version":173,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"LQJ@":[["Krystyna Dabrowska"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:50 AM - 9:10 AM"]],"zo?d":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["850"]],"title":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},"created_time":1687803197335,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","version":177,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Philip Lauman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:10 AM - 9:25 AM"]],"zo?d":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["910"]],"title":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},"created_time":1687825352404,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","version":236,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["College of Life and Environmental Sciences, University of Exeter"]],"LQJ@":[["Meaghan Castledine"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:25 AM - 9:40 AM"]],"zo?d":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["925"]],"title":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},"created_time":1687804887674,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","version":198,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Léa Zinsli"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:40 AM - 9:55 AM"]],"zo?d":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["210"]],"title":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},"created_time":1687824768936,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","version":303,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"LQJ@":[["Thomas Smytheman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:55 AM - 10:15 AM"]],"zo?d":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940-955"]],"title":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},"created_time":1687825475724,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"944c9a63-de56-4d06-b8cd-06558125646e","version":155,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"pjT:":[["10:15 AM - 10:35 AM"]],"~Dke":[["955"]],"title":[["Break"]]},"created_time":1688512417106,"last_edited_time":1689390828482,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","version":35,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"title":[["Session 8: Molecular phage biology I"]]},"created_time":1689385380738,"last_edited_time":1689390817548,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"LQJ@":[["Vivek Mutalik"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:35 AM - 10:55 AM"]],"zo?d":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:25 AM"]],"title":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},"created_time":1687799457743,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e149194-e542-4204-8062-fd608eec8872","version":249,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Enea Maffei"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:55 AM - 11:10 AM"]],"zo?d":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},"created_time":1687803193040,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","version":327,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Carmen Gu Liu"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:10 AM - 11:25 AM"]],"zo?d":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},"created_time":1687825727042,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","version":350,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"LQJ@":[["Jordan Romeyer Dherbey"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:25 AM - 11:40 AM"]],"zo?d":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["150"]],"title":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},"created_time":1687803195265,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["10 min."]],"B:Eq":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"LQJ@":[["Bani Mallick"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:40 AM - 11:50 AM"]],"zo?d":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["930-945"]],"title":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},"created_time":1687825724713,"last_edited_time":1689390622730,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","version":42,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687825725697,"last_edited_time":1689391247104,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","version":61,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"LQJ@":[["Chair: Michael Koeris"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"title":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},"created_time":1689385397612,"last_edited_time":1689390775948,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","version":418,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"LQJ@":[["Michael Koeris"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["355"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825471094,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","version":190,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["PhagePro, Inc"]],"LQJ@":[["Minmin Yen"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["410"]],"title":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},"created_time":1687825467340,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","version":239,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Locus Biosciences"]],"LQJ@":[["Nick Conley"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["425"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825472550,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","version":298,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Dominic Sauvageau"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["440-455"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825477708,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","version":193,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["2:05 PM - 5:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1688513391651,"last_edited_time":1689390780669,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","version":175,"type":"page","properties":{";:c\\":[["Wednesday"]],"Mf`v":[["TBA"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 7:00 PM"]],"~Dke":[["5:00 PM - 7:00 PM"]],"title":[["Dinner (TBA)"]]},"created_time":1688513047039,"last_edited_time":1689391243919,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","version":233,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["Formal Poster Session/Mixer I"]]},"created_time":1688513045165,"last_edited_time":1689390784399,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","version":114,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:30 PM - ?"]],"~Dke":[["6:30 PM - ?"]],"title":[["Phage sculpture building"]]},"created_time":1688881537706,"last_edited_time":1689390731272,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7781829a-04c3-488d-8c00-67cbfa195279","version":72,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9:00 PM - ?"]],"title":[["Dancing "]]},"created_time":1688513043334,"last_edited_time":1689390786731,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","version":56,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"title":[["Session 10: Ecology & Informatics II"]]},"created_time":1689385411869,"last_edited_time":1689390736908,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ac725466-3339-4427-9079-434d80ade7b9","version":319,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"LQJ@":[["Ryan Cook"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220"]],"title":[["TBA (Phage ecology)"]]},"created_time":1688512414351,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","version":386,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Leicester"]],"LQJ@":[["Sophie Harrison"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:50 AM - 9:05 AM"]],"zo?d":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["235"]],"title":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},"created_time":1688512411541,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"LQJ@":[["Michael Shamash"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:05 AM - 9:20 AM"]],"zo?d":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1115"]],"title":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},"created_time":1687825730087,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","version":290,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Martha Clokie"]],"PvYj":[["No"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:20 AM - 10:20 AM"]],"zo?d":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["TBA"]]},"created_time":1688514593287,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","version":160,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10"]],"title":[["Break"]]},"created_time":1688088803519,"last_edited_time":1689390791508,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5489e88d-538f-4a44-804d-ee83ee558203","version":69,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"LQJ@":[["Chair: Hany Anany & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"title":[["Session 11: Phage in food and agriculture"]]},"created_time":1689385433340,"last_edited_time":1689390765437,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2e95f701-433d-46d7-b576-3763b363edf7","version":232,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["KU Leuven, Belgium"]],"LQJ@":[["Jeroen Wagemans"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["10:40 AM - 11:00 AM"]],"zo?d":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1030"]],"title":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},"created_time":1688512255481,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","version":228,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Research Scientist"]],"LQJ@":[["Hany Anany"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:00 AM - 11:20 AM"]],"zo?d":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1050"]],"title":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},"created_time":1688512253803,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","version":245,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"LQJ@":[["Thomas Denes"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:20 AM - 11:40 AM"]],"zo?d":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1110"]],"title":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},"created_time":1688512251773,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","version":257,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["SCIPHAGE"]],"LQJ@":[["Viviana Clavijo"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1125"]],"title":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},"created_time":1687825723153,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","version":90,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1688088805159,"last_edited_time":1689391256910,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","version":40,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"title":[["Session 12: Molecular phage biology II"]]},"created_time":1689385453912,"last_edited_time":1689390755122,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","version":225,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"LQJ@":[["Katharina Höfer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1pm"]],"title":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},"created_time":1687799450907,"last_edited_time":1689390664639,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"581507dc-533e-4600-9215-03f0e000393d","version":329,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Janine Bowring"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},"created_time":1687825728292,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","version":294,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"LQJ@":[["Rebecca Quinn"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["205"]],"title":[["Phage tRNAs Subvert Host Resistance"]]},"created_time":1687799408892,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","version":222,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"LQJ@":[["Valentina Andrea Floccari"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["845"]],"title":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},"created_time":1687825727796,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","version":248,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, University of Idaho"]],"LQJ@":[["Tracey Peters"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:05 PM - 2:20 PM"]],"zo?d":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["915"]],"title":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},"created_time":1688512649947,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","version":310,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Department of Medicine, McMaster University"]],"LQJ@":[["Gayatri Nair"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:20 PM - 2:30 PM"]],"zo?d":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9"]],"title":[["Biasing Bacteriophage Behaviour"]]},"created_time":1687799452995,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","version":267,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"LQJ@":[["Jieting Lin"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:30 PM - 2:40 PM"]],"zo?d":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1140-1155"]],"title":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},"created_time":1688878455809,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:40 PM - 2:55 PM"]],"~Dke":[["250"]],"title":[["Closing Remarks / Future Meeting"]]},"created_time":1688514591043,"last_edited_time":1689390673609,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","version":255,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:05 PM - 5:00 PM"]],"title":[["Formal Poster Session/Mixer II "]]},"created_time":1688088808511,"last_edited_time":1689390674834,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","version":261,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:00 PM - 5:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},"created_time":1688088811059,"last_edited_time":1689390678171,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","version":183,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Mf`v":[["Olympia"]],"R\\:D":[["Social/Fun!"]],"pjT:":[["5 PM - 9:00 PM"]],"title":[["Adventure out into Olympia for dinner and an evening on the water. "]]},"created_time":1688513305939,"last_edited_time":1689390724489,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c39de849-001b-4ae2-866a-68f4655eed15","version":84,"type":"page","properties":{";:c\\":[["Friday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"R\\:D":[["Social/Fun!"]],"title":[["Mt. Rainier hike!"]]},"created_time":1689388334090,"last_edited_time":1689390721716,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":201,"visible":false,"property":">>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"FmK{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"fb24f8e8-7c0e-4774-8d4f-6bec35029c13","version":292,"type":"table","name":"For copying to final","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":225,"visible":true,"property":">>Gm"},{"width":124,"visible":true,"property":";:c\\"},{"width":285,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"pjT:"},{"width":286,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":159,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","version":818,"type":"table","name":"Sorted by name","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":176,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zo?d"},{"width":194,"visible":true,"property":">Gm"},{"width":121,"visible":true,"property":"<\\t`"},{"width":200,"visible":true,"property":"R\\:D"},{"width":372,"visible":false,"property":"_HTj"},{"width":200,"visible":false,"property":"Mf`v"},{"width":200,"visible":false,"property":"pjT:"}],"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"page_sort":["80d7da9f-82c3-406e-9741-bcc1b9cff1a9","b8f20d87-b39a-4064-a023-6abfca157c88","3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","e86b039d-5c7a-4e4d-8623-a6b08cb24a48","320fbd52-2c2b-475f-b2da-07864683da29","5ff3d332-073e-4c93-b127-e69f9df169d5","d179a076-b691-46ad-a752-ce32dfa11bcd","1dda772e-1e87-4a0c-a582-a191ff304204","b8eee1a0-1cc3-42fd-8b29-ff4e3c581d19","26108f23-c750-4058-b26f-8420fb7748a3","73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","1d704fe9-bd23-4fb7-9d74-a974c65e2244","bf7b51df-bfff-459b-85dc-ff4fc776c9aa","7cf59d05-a856-4633-978a-a56a880f0cf8","455e36c6-1fcc-41db-89d5-4e5a959c349a","dd04346a-c48c-4d7c-89ac-5e1920576bfa","1d996c31-e552-4e3f-86d5-681bd1884843","75dc8c11-862a-498b-8cea-c14a7c6a18e9","dff47c86-ccda-4517-adbb-34074ba2ffa4","58ca3e2e-cbc1-43a5-a9bf-710bc2264a6f","fea14a8b-2951-4dff-acac-14de4789184d","3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","07279636-6443-4a25-abd5-07a40b1882c9","ba3bfc5f-241c-49ce-ae27-2ba7527b27d6","d5e79306-ddfc-4d96-9ebd-47eaec869c27","cfecf9c5-fd50-4930-9264-2f7c3726672d","b0a8cfd9-bf0f-4696-9bdd-b0b05d7cec71","9914254b-f117-427d-a18e-942c13978d1a","a82c044e-1394-4475-92bf-9c43e718a38c","3918b591-a398-4a45-a808-38c6d79323c3","c556f9b3-2a23-4bf2-a7cd-fff5434f949a","d0c49619-86e8-43cd-9df3-86dd7c1c1d1d","4c230034-857b-4aff-b554-3cf22b957cdd","8d47b39b-636b-47a2-ac35-5f3051689147","25b27f0c-aa35-4926-b595-208c5231130e","148eaf01-e456-4435-9314-0066f1d2d6de","7916e9a3-6952-4d49-83b8-2e697415d72a","b7abe37a-8c9c-4efc-83a8-0ccc36de5d1d","bfb853d9-b1e6-481a-970e-6c100c0f16c7","21b8ee51-3565-496e-84ff-8782203c072c","b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","c67fb2e5-b1ab-4d56-af58-d8d56db18c88","e693a814-7ac1-4664-b3c2-cee5d3549c5a","a37f9cb1-3d9d-459a-a1c4-68bf475ea444","b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","9c167305-10ba-4b34-a092-7a5ea13239b4","d2710181-6321-4d71-88c7-5f049d2dfd57","ee3dcdd1-d7bc-4809-9caf-ce8bec318384","d36485a7-d749-4512-a97f-8a64bdec62f4","43b54100-7643-4867-8231-1727a947cd4d","9d48e9c9-260f-41b2-a21e-9441bab74ca0","e3f09768-d770-415c-b768-b8278b5482a0","87fe14a6-6042-483b-8261-a3d7a9596298","dab8ef42-154f-4e4b-b34a-7da4616f7368","edfe4fce-28e9-4b98-a80a-6cf3afa53856","4e149194-e542-4204-8062-fd608eec8872","cdb99eef-cdbd-4aaa-a678-dc089739c335","e15b3ca5-974f-4409-a879-31857807f86e","8963ee06-88f2-4f4b-a3cf-5e6ee6244bd6","394bdbe9-ca41-4113-b5e0-1fc9729d0e11","cfde895b-a32e-4fef-8c75-85755601e11d","d72b0b26-a76a-426b-aec4-8c87f84ed27f","50505d83-a8c8-460e-a976-4f53b6e15dff","c26cd957-9549-41af-ab46-126152046e11","4b93b494-6ace-4fe2-91ae-5a11a4b2698f","16678ca8-1e8a-497e-a3d2-bf8edab31a3b","e992eab2-5475-424e-abaa-de0736c4c3c5","26cddb2d-015e-4a96-a665-5c3ae68f958f","634cc05d-293e-4549-a903-dfb8d19b9e4b","f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","20917259-a2cf-40c9-a72e-3374fe2062ea","5415f867-573e-4b4d-bfc0-e3581989dbe5","d2e78427-4fb8-4a28-95c9-b30cb1f509f5","bf6fe550-9932-4e46-ba29-7745a0608549","8bcad3aa-f2d4-4f61-895f-ad066706dfca","30efc624-9c89-4337-a70d-a427146c730b","6a8181aa-972a-4e87-b78f-30f05a5f7387","b5683451-84aa-4bd7-a17d-b370db7980be","138df2d1-4629-4211-9ea0-396f458d2b4c","5499e98a-832c-4a8c-aba1-ec1d9f57292b","a3cd60e9-c694-46fe-a631-f24b44da1cdc","fcead5f3-6947-423d-8683-0c65e83ed8f9","5ba12c78-37ec-4f42-8ed9-e8b1b4abca41","375dd916-026d-4e76-9f86-89ba2d2482f3","c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","45e610f2-5dab-4cf8-8976-62ef58f65417","25bad495-34fe-4db7-b879-f92f359edb71","229860cd-cae1-483d-9476-14ce608bc0ab","d04deead-44b9-4e15-97ff-af4faac462b8","3b540bde-6c3d-4c1a-b7bb-682eba1404df","21dfef19-a016-4520-bc9a-6eaac35c0123","d8b23bc3-90e8-4486-8eb3-8287563d77af","c297bc53-3c36-45af-95b9-867bd1763528","b3af1c11-d888-4292-b1c9-49004d6d90bd","a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","7e3d2dd1-b680-4c11-bfe5-f5f9510a099b","eaf6242a-4ccc-42d0-9df4-64516ae6da10","bd7f78f0-9879-4a81-9843-020c0aedb8bf","15501ed4-0d22-4449-bc23-74bf5e810fe5","cd74805b-8867-46ba-bf38-b8b720f697a8","8927a91f-eff6-42c1-9dd8-0fc959c0feee","ab6c1c7f-e4dc-4292-a336-a8aeeeea5231","947742f7-73c1-4b7d-b535-14fe28df6455","ca2f9f2d-3cc0-4add-92e4-24d4b79b4811","bff2728f-9ccd-4f6d-80a0-bde174b96ac7","8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","9919ea53-db46-44e6-b90a-37dac36054a2","abb3181f-8478-447e-8ef4-4f798c674ac0","f423b719-8bc2-446a-af8f-fe6cedc5db93","1cf907e2-8eef-44ff-8381-1aeba6f6fe20","c2c58aff-b2bd-478e-a740-d4959d9ac154","ed30e6f6-7c05-4756-a13f-a8d83d34bec6","11b1742c-9e64-4811-a371-6bf962e05694","2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","1cef6663-9aaf-4d01-a450-e5e863af04b8","3b88ee39-8868-4cfb-83bb-1f234e16724d","dc003b5e-bd14-4150-af35-cf1eca003e13","c0de3776-ede0-4c30-be88-288a19604379","dbb449a2-7df2-4821-a94d-400b65aed1e0","0a75393a-f05c-441a-b978-0b033e7b3dcb","a3a8dd50-043c-4586-9e6a-165dae46e7cd","1efe468a-0193-4078-a1b4-66c36ef05846","a42cc434-71a4-47e5-8950-2ff2d585e4bc","d1569dba-23b6-46a0-9556-b71ff0727e26","a259cd5d-0a45-40d2-98d7-afb774a00554","4180d7bc-d11f-4d4f-be7b-801320cf94aa","cfc42d63-ec72-443e-a1e0-7cd15cd1b6b2","6bfdf00f-db69-4def-ab47-e13a8cd7b673","6028f4b4-f271-472c-a2c8-acb11caa3fff","60a853d5-098c-4f34-b9dd-46a58efe5216","c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","67f94fd5-db64-4d62-bea2-987fa2be2f69","c1b92230-2e51-412e-8149-d83f131e77e7","f09da0ac-5747-44e4-bf6a-4291fee3d9a2","1bb96063-db6c-4cbe-af69-2d00c6a7b369","2216cb44-05b3-490e-84e6-f928b4ed2aef","276d1e16-7a7c-4552-b2a5-6425ef44907b","5df0843e-6388-403c-aff3-0fd826eb55bf","e23c80b4-93af-47c4-a213-c2fdf3d919bf","d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","2dc746fa-8f4f-423d-ab3b-646834be8e8a","be032e3f-6934-41cb-82dc-c1c6f47f5142","f3b72cc7-1135-4121-bb1a-e14befc8eb4f","b706798a-20fd-460d-b182-3528d57c3743","3137dcf5-8634-4567-825e-b680eba551d9","1a64bcc6-373d-4d33-a78b-82fa0e1d2c21","6c056d5a-a4aa-423f-ac4e-5da45899f8c3","d8b88202-9bbb-4794-a41c-ade28f86ec79","f695b133-d79e-4a28-806a-c7816b2b20e5","8f11570b-97d7-432c-9e08-8d81c364a9bd","cba0e342-eb23-490d-bcb3-5ad702ffe616","ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","14d54749-63ad-4780-8bf0-bfd9ed9db335","a1307bb9-ff3e-4f34-a82b-0f00e80bb259","ca5acf7a-8883-4fdd-8645-c20d646b6ea4","944c9a63-de56-4d06-b8cd-06558125646e","1dbba8a9-1e44-443d-b3f5-1215cb7684c7","d78d4962-bc5b-465f-8021-218e20f5fc7a","29cbb222-2f1b-4e94-9906-136598c6a36e","8c311bef-4951-42b3-af2b-64f4b1a8533b","9c16ce62-0fa0-40bc-9aa0-33562495d8e0","0be688d3-4b95-466c-99c7-1e10555047ca","435f531a-0c04-4507-8cdd-8ab2ba2098a6","29178e11-4d8e-4bfb-a185-ad6ef228be55","8a299808-90ad-4a99-a961-487a74113602","20593fb1-7b98-4ad4-b665-bd51d17ea110","76c088a7-e1d9-4cf3-8c2a-a089d5872a73","8e803c64-fa50-43d5-8b56-3166792858c6","921231f0-8471-4717-872a-ed53c83b9150","4599af88-8851-4ad4-9120-ac7720b2a9b0","6148d44a-7933-4d98-8ce1-d22be7db73d1","ca9891b7-6b3d-4afe-a3b4-37e49274f963","220244b9-e22e-4c55-921e-2f2d98fa01a0","4a5045e7-0d9c-44bc-b079-8a0f32dc2ab8","df60a7dd-daaa-4aae-ad38-a8977ae8223c","b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","27a95a36-f080-43c2-8b8c-1a10c814f35a","fbae94a2-65d1-4db9-b48e-eb296215e7d3","ddafcc94-0025-4912-9da6-2bd214d70984","97f6e680-6894-4879-aae5-2d099a0439fe","2550fd85-0e8c-40bf-aa42-30b6fe394df3","9af07187-e2f0-4dca-9f87-175ecc1c41ea","c9a4078e-fec0-4a47-8779-2552487e4143","71950354-ce16-4acb-9537-926885811e17","bf482d4d-f2b1-4160-99bb-9ded585ff518","a68d9e08-8804-41ae-88f3-af9fc9f52b6a","cde43b84-f7b5-4076-b0fa-d9883edbe118","949bdd60-dd5d-4871-9248-16183ae117bb","9d80a5a4-f80a-4344-86c1-fffe5724a93f","0d914c29-ad5e-4682-9eb5-cccd8b35d156","15e8b124-9e95-4d7d-937d-a7448126d443","789fff4a-31ae-4724-8214-cbad2a03bc6c","c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","37f64d6c-856a-45d4-ae1c-787aa2eaac29","a604a22d-e533-4b87-bb55-09adc2af00ca","7781829a-04c3-488d-8c00-67cbfa195279","c7139154-3923-4dee-8181-a6243de4c976","f3ac9766-0302-4522-906d-45ad7a8ea060","2b86d329-32b9-4e95-8c15-fe6ea90ef4eb","a3ff1019-73c2-46ef-a917-0c749dc7a66b","ac6cc1d7-0745-47fd-9b87-84c63329039f","581507dc-533e-4600-9215-03f0e000393d","5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","471524da-ac95-4e70-834e-cad6e07afe1f","8db54920-85c2-457c-9ba7-9901243cfbbc","bf1e263f-818f-4196-ab92-7167aeedecf8","e888c902-3fb5-4e97-9db4-39c540023ab7","f2624eb4-9955-441d-870a-86d77cfc9f29","a6427d07-59df-4500-89bf-63153e845c67","2e95f701-433d-46d7-b576-3763b363edf7","d8bc49a0-033d-43f7-a57c-e3a267f55879","4e34ad83-a93f-4fad-a000-625e1e7ce92a","182fb594-883e-45ca-9b0a-f7dfb57f2ba7","26eaaf74-61d5-4b57-a7c1-d644e164302e","bb0c3590-afbe-4528-aba6-bda243798293","2c5431f2-8923-4b9b-adfb-344533552bdd","3f82ea9d-6118-49b3-a167-cdab2fe82497","ce6df1d4-f38a-4649-bc2c-b847e48b5056","e2a17874-e8e5-44fe-aff2-f2cb9c56098a","aa5cf4e8-a847-4cd3-80a2-ee1de8369ce4","a22b1812-888d-4ad8-8e0c-40ed5be324d4","fe40b9d7-4313-43be-82cc-2d57a0cdb61b","12d07a36-a3c7-49cc-8fe3-63d060d04339","86f3cc7b-6590-4819-9f87-95ec5c6c6c1d","6e778f3a-e16d-4970-a3af-0b7dddb43b64","e79b83e8-55bc-4750-b4f7-9646647d8d19","1a56df20-9634-4e16-873a-db82c54b9d48","7b0e1ccd-df28-481e-9d87-3d9838200395","6f7a547e-f143-4997-8363-808723cadb92","ee186a6d-8647-4202-8f1d-516c4d4229dc","1d86cd3c-e014-46e0-8f73-0e70d4287cd5","85295232-d496-49cd-89d6-30495d7e4cb4","6ce6f053-2c4b-4987-bf3c-d2a5ec03ecf2","3d79767d-be48-4947-ab26-bf43ae1451bd","990dd017-90eb-4940-b5e4-9ac8e5f2562c","e4122488-d85f-4ea0-a801-2c23a9312574","dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","54c930a8-c75b-4cbb-91d1-ab759487c9a3","ac725466-3339-4427-9079-434d80ade7b9","d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","bd297533-496f-4d20-b81f-7ad4e0756397","3ee8e07b-eea3-4939-9055-6aff48e3e51a","a96898de-d384-45ec-961c-8f01fdb5dc73","32e0ad0e-d72f-48f0-bba4-6a3707604aaa","4007bf81-b00e-4750-b851-7ec471273bf2","40aeedb7-0877-478c-b4e4-49395f7b26cf","8673752a-79a8-4568-8deb-571cd6aab24d","69f8b658-9cfb-407d-90c6-3efc9b96835b","3e3afdd9-5775-4d05-9b9a-6bf8d515fc04","f91d821b-f4af-4f98-9c77-967120c13514","77203aa4-43b9-4b93-97bf-b1cbae4e14eb","76add0fa-5b7d-4d47-a705-8228c7a6d146","fa33325b-d6dd-4fe4-9a1f-dd7db6d78f95"],"query2":{"timeline_by":">>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"5537f8ba-2f92-467f-aca5-d43a0e59d6ab","version":32,"type":"calendar","name":"","format":{"table_properties":[{"width":308,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"=WD`"},{"width":200,"visible":true,"property":"~Dke"},{"width":329,"visible":true,"property":">>Gm"}],"calendar_properties":[{"visible":false,"property":"zo?d"},{"visible":true,"property":"R\\:D"},{"visible":true,"property":":iJn"},{"visible":true,"property":">>Gm"},{"visible":false,"property":"pjT:"},{"visible":false,"property":"_HTj"},{"visible":false,"property":"PvYj"},{"visible":false,"property":"<\\t`"},{"visible":false,"property":"=WD`"},{"visible":false,"property":"B:Eq"},{"visible":false,"property":">Gm","timeline_by":">>Gm"},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"be03b38d-8ecb-4ecf-84b2-d84948b9ed6f","version":23,"type":"table","name":"Chronological","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":228,"visible":true,"property":"title"},{"width":225,"visible":true,"property":">>Gm"},{"width":279,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"zo?d"},{"width":163,"visible":true,"property":"=WD`"},{"width":179,"visible":true,"property":"~Dke"},{"width":200,"visible":true,"property":"pjT:"},{"width":539,"visible":true,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/6914ccb591f2625952f15abad8b7e60e151c26babac6b3291a2b3e7154af080f00023b96c328d7e6 b/.wrangler/state/v3/cache/default/blobs/6914ccb591f2625952f15abad8b7e60e151c26babac6b3291a2b3e7154af080f00023b96c328d7e6 new file mode 100644 index 0000000..5d581e7 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/6914ccb591f2625952f15abad8b7e60e151c26babac6b3291a2b3e7154af080f00023b96c328d7e6 @@ -0,0 +1 @@ +{"rows":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"Quadram Institute, UK","Speaker":"Instructor: Evelien Adriaenssens","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"Viromics: Viral community analysis with metagenomics"},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"TAILOR Labs, Baylor College of Medicine","Speaker":"Instructor: Justin Clark ","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["0cd38da4-0919-4b69-bb95-3d9a6c8ae352"],"Event":"Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"BBQ Welcome lunch at Evergreen"},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Speaker":"Instructor: Ramy Aziz & Rebecca Wattam","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["c90b69ff-e994-403b-b885-59871db7734c"],"Event":"TBA (Genomics/PATRIC)"},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Affiliation":"Phages for Global Health","Speaker":"Instructor: Tobi Nagel & Fran Hodges","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["72bc1da3-cc5a-4293-8f3c-a8de212cf1ea"],"Event":"TBA (Biobanking)"},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"},"Session":"Pre-conference workshop","Time":"6:30 PM - 8:30 PM","Event":"(TBC) Workshop Extension"},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Poster Session","Time":"6:00 PM - 9:00 PM","Event":"Informal Poster Session "},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Social/Fun!","Time":"6:00 PM - 9:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"},"Location":"Purce Hall","Session":"Session 1: Plenary talks","Event":"Session 1: Plenary talks"},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":"Monday","Length of talk":["15 min"],"Session":"Session 1: Plenary talks","Time":"8:30 AM - 8:45 AM","Event":"Phagebiotics Welcome!"},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Martin Loessner","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"8:45 AM - 9:05 AM","Name of speaker":["be36f174-7518-499c-aa4c-4fe8c08ecfd1"],"Event":"Bacteriophages by design: tiny killers and smart detectives"},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Quadram Institute Bioscience","Speaker":"Evelien Adriaenssens","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"9:05 AM - 9:25 AM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"What’s going on with phage taxonomy and is it really necessary?"},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"},"Speaker":"Chair: Teagan Brown & TBA","Location":"Purce Hall","Session":"Session 2: Ecology & Informatics I","Event":"Session 2: Ecology & Informatics I"},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Lawrence Livermore National Laboratory, Livermore, CA","Speaker":"Gary Trubl","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:25 AM - 9:45 AM","Name of speaker":["cd337cdc-ca59-4f9e-a083-1b1f68fd180b"],"Event":"Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Harvard Medical School","Speaker":"Sian Owen","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:45 AM - 10:05 AM","Name of speaker":["3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c"],"Event":"Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Location":"CAB","Session":"Session 2: Ecology & Informatics I","Time":"10:05 AM - 10:25 AM","Event":"Break"},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Globe Institute, University of Copenhagen, Denmark","Speaker":"Thomas Sicheritz-Pontén","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"10:25 AM - 10:45 AM","Name of speaker":["b06e9b76-ff8a-432b-86e7-029a793897b3"],"Event":"Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University at Buffalo","Speaker":"Kathryn Kauffman","Session":"Session 2: Ecology & Informatics I","Time":"10:45 AM - 11:05 AM","Name of speaker":["49b79643-2347-4528-a497-8f4ed336c33a"],"Event":"Uncovering the roles of phages in the oral microbiome"},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jan Zheng","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:05 AM - 11:25 AM","Name of speaker":["5649ff80-cad7-451f-9b55-d297f1563090"],"Event":"Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phase Genomics, Inc.","Speaker":"Benjamin Auch","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:25 AM - 11:40 PM","Name of speaker":["93d533c0-875c-42c2-9a85-79199379e203"],"Event":"Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Genetics, Stanford University, Stanford, CA, USA","Speaker":"Yishay Pinto","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:40 AM - 11:55 AM","Name of speaker":["8df4db71-3c5c-40e0-9f4e-4671e81dbc71"],"Event":"Phage-inclusive profiling of human gut microbiomes with Phanta"},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":"Monday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 3: Phage defense","Event":"Session 3: Phage defense"},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University of Otago, New Zealand","Speaker":"Peter Fineran","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:00 PM - 1:20 PM","Name of speaker":["ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef"],"Event":"Anti-CRISPR strategies and their regulation"},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"School of Biological Sciences, University of Southampton, United Kingdom","Speaker":"Franklin Nobrega","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:20 PM - 1:40 PM","Name of speaker":["2a748a12-8f17-4a75-80e4-6c5e5752effb"],"Event":"Co-occurrence and synergism of anti-phage defence systems"},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Biology, McMaster University, Hamilton, Canada","Speaker":"Leah Sather","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:40 PM - 1:55 PM","Name of speaker":["0210e1bb-0c5e-4db7-9169-44a85b61799c"],"Event":"Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"School of Biological Sciences","Speaker":"Thomas Todeschini","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:55 PM - 2:10 PM","Name of speaker":["fa7afdac-7554-4588-91c2-b3543ed1f35d"],"Event":"Kiwa modulates host nuclease activity for anti-viral defense"},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Xu Peng","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"2:10 PM - 2:25 PM","Name of speaker":["3a70c9b0-883f-411e-aeff-63e1b91c6175"],"Event":"How archaeal viruses inhibit host CRISPR-Cas immunity"},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Time":"2:25 PM - 2:45 PM","Event":"Break"},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"},"Speaker":"Chair: Sandra Morales & TBA","Location":"Purce Hall","Session":"Session 4: Phage therapy I","Event":"Session 4: Phage therapy I"},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD","Speaker":"Scott Stibitz","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"2:45 PM - 3:05 PM","Name of speaker":["55bdd695-7c84-4da3-a08d-6b35cc79895b"],"Event":"Regulation of Phage Therapy by the FDA: CMC topics"},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phage Consulting, Sydney, New South Wales, Australia","Speaker":"Sandra Morales","Session":"Session 4: Phage therapy I","Time":"3:05 PM - 3:20 PM","Name of speaker":["ab627c93-11a9-4ef0-8deb-fa80f49f4a80"],"Event":"TBA (Phage therapy overview)"},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Queen Astrid Military Hospital, Belgium","Speaker":"Jean-Paul Pirnay","Session":"Session 4: Phage therapy I","Time":"3:20 PM - 3:40 PM","Name of speaker":["f3401535-46c5-44ba-852a-cf31eaaf7818"],"Event":"TBA (Phage therapy experience in Belgium)"},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Yale University, USA","Speaker":"Benjamin Chan","Session":"Session 4: Phage therapy I","Time":"3:40 PM - 3:55 PM","Name of speaker":["8a9e19e8-f881-437b-8c9e-594d07a25d95"],"Event":"TBA (Phage therapy experience at Yale)"},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Austen Terwilliger","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"3:55 PM - 4:15 PM","Name of speaker":["71c70747-235c-4e79-a22c-8764e7076ccd"],"Event":"A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":"Monday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":"Monday","Session":"Special Session","Time":"5:30 PM & 6:00 PM buses","Event":"Head to bus depot and go downtown to movie theater"},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"},"Speaker":"Panel: Martha Clokie, Diane Shader Smith, & more TBA. ","Location":"Downtown Olympia","Session":"Special Session","Time":"7:00 PM - 9:30 PM","Event":"Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":"Monday","Session":"Special Session","Time":"9:30 PM, 10:15 PM, 11 PM buses","Event":"Buses back to Evergreen"},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"},"Speaker":"Chair: Gina Suh & TBA","Location":"Purce Hall","Session":"Session 5: Phage therapy II","Event":"Session 5: Phage therapy II"},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":"Tuesday","Length of talk":["10 min."],"Session":"Session 5: Phage therapy II","Time":"8:30 AM - 8:40 AM","Event":"Introduction to keynote"},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":"Tuesday","Length of talk":["60 min."],"Speaker":"[Keynote] Diane Shader Smith","Session":"Session 5: Phage therapy II","Time":"8:40 AM - 9:40 AM","Name of speaker":["c6f82a66-2bb7-4431-8cb8-6ded07aa301c"],"Event":"Keynote TBA (Phage therapy patient/parent experience)"},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jessica Sacher","Accepted in airtable":true,"Session":"Session 5: Phage therapy II","Time":"9:40 AM - 10:00 AM","Name of speaker":["745163f6-a397-4a4c-b4cb-154e2ef458a9"],"Event":"Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"University of Toronto","Speaker":"Greg German","Session":"Session 5: Phage therapy II","Time":"10:00 AM - 10:20 AM","Name of speaker":["099bc17c-8582-473b-97c2-1b14f1c8a444"],"Event":"TBA (Phage therapy experience in Canada)"},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":"Tuesday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":"Tuesday","Length of talk":["15 min"],"Speaker":"Talk - Chris Shafer ","Accepted in airtable":false,"Session":"Session 5: Phage therapy II","Time":"10:40 AM - 10:55 AM","Name of speaker":["cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7"],"Event":"TBA (Patient experience)"},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":"Tuesday","Length of talk":["5 min"],"Session":"Session 5: Phage therapy II","Time":"10:55 AM - 11:00 AM","Event":"Introduction to keynote"},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":"Tuesday","Length of talk":["60 min."],"Affiliation":"IPATH, UCSD","Speaker":"[Keynote] Steffanie Strathdee","Session":"Session 5: Phage therapy II","Time":"11:00 AM - 12:00 PM","Name of speaker":["db83cbad-3504-4120-8eb2-a9e9f588fb29"],"Event":"TBA (Phage therapy experience in San Diego)"},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 6: Understanding & improving phage therapy","Event":"Session 6: Understanding & improving phage therapy"},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"IPATH, UCSD","Speaker":"Katrine Whiteson","Session":"Session 6: Understanding & improving phage therapy","Time":"1:00 PM - 1:20 PM","Name of speaker":["9dce44b9-3367-4c00-91b7-147e7554c75c"],"Event":"Better together: Phage cocktails constrain the growth of Enterococcus"},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium","Speaker":"Sabrina Green","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:20 PM - 1:40 PM","Name of speaker":["dddc50d1-cf21-42a5-99b9-b265b09b51d2"],"Event":"Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD","Speaker":"Kevin Burke","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:40 PM - 1:55 PM","Name of speaker":["e2672fc8-3000-4de3-b372-baa29bff31cb"],"Event":"Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, CA 92182, USA","Speaker":"Tiffany Luong","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:55 PM - 2:10 PM","Name of speaker":["70862f59-9b2b-498e-a110-eca0fa064e94"],"Event":"Lost in circulation: Improving the in vivo activity of phage cocktails"},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany","Speaker":"Magdalena Unterer","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:10 PM - 2:25 PM","Name of speaker":["9e27a8ec-a3b8-4167-9217-d7f4c8bc9008"],"Event":"Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Rime Bioinformatics SAS, Palaiseau, France","Speaker":"Antoine Culot","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:25 PM - 2:40 PM ","Name of speaker":["fc603774-7a1b-4ee5-987e-37afce4b85bd"],"Event":"Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Jiemin Du","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:40 PM - 2:55 PM","Name of speaker":["e757271b-ff33-407a-89b8-8cd37f0d9f7f"],"Event":"Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":"Tuesday","Length of talk":["20 min"],"Time":"2:55 PM - 3:15 PM","Event":"Break"},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD","Speaker":"Susan Lehman","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:15 PM - 3:35 PM","Name of speaker":["e868601c-0a86-4534-862a-feea152760d9"],"Event":"A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA","Speaker":"Katarzyna Danis-Włodarczyk","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:35 PM - 3:50 PM","Name of speaker":["46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4"],"Event":"Topical phage treatment of a P. aeruginosa mouse wound-infection model"},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA","Speaker":"Qingquan (Kevin) Chen","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:50 PM - 4:05 PM","Name of speaker":["be03672d-3029-461b-81ca-9fa90eb3248b"],"Event":"Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland","Speaker":"Gregory Resch","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:05 PM - 4:25 PM","Name of speaker":["e9bd9655-a26e-48a5-9afb-16ba0082c88f"],"Event":"Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA","Speaker":"Paul Bollyky","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:25 PM - 4:45 PM","Name of speaker":["99674cc4-e81f-45a2-912b-50cefd63c4e9"],"Event":"Circulating bacteriophages can identify bacterial pathogens in human infections"},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":"Tuesday","Session":"Poster Session","Time":"6:00 PM - 7:00 PM","Event":"Informal Poster session "},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":"Tuesday","Length of talk":["120 min"],"Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"},"Speaker":"Evergreen Chronology of Inspiration Panel","Location":"Purce Hall","Session":"Special Session","Time":"7:00 PM - 9:00 PM","Event":"TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":"Tuesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Celebration/Dancing"},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 7: Phage and the immune system","Event":"Session 7: Phage and the immune system"},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, USA","Speaker":"Dwayne Roach","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:30 AM - 8:50 AM","Name of speaker":["47154f21-f3d7-4f67-bc63-044dcd457522"],"Event":"The Viral Immunogenicity of Clinically Relevant Bacteriophages"},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland","Speaker":"Krystyna Dabrowska","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:50 AM - 9:10 AM","Name of speaker":["d043af99-31e1-4899-b2d6-e7aebfb09289"],"Event":"PhageScan: identification of major phage epitopes that are immunogenic for humans"},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Philip Lauman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:10 AM - 9:25 AM","Name of speaker":["a5125779-3bd8-4770-9ddd-a7de0bfec554"],"Event":"O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"College of Life and Environmental Sciences, University of Exeter","Speaker":"Meaghan Castledine","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:25 AM - 9:40 AM","Name of speaker":["e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0"],"Event":"Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Léa Zinsli","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:40 AM - 9:55 AM","Name of speaker":["cc428e33-a0a8-427d-a52c-e16bf7a5b030"],"Event":"Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA","Speaker":"Thomas Smytheman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:55 AM - 10:15 AM","Name of speaker":["8fdd1c46-143b-40aa-8887-ff385fcbff06"],"Event":"Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":"Wednesday","Length of talk":["20 min"],"Time":"10:15 AM - 10:35 AM","Event":"Break"},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 8: Molecular phage biology I","Event":"Session 8: Molecular phage biology I"},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA","Speaker":"Vivek Mutalik","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:35 AM - 10:55 AM","Name of speaker":["26635071-15db-4630-aed0-709d6a5af51e"],"Event":"Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Enea Maffei","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:55 AM - 11:10 AM","Name of speaker":["da86622d-2762-4d2d-8b1d-c500e44dd712"],"Event":"Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Carmen Gu Liu","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:10 AM - 11:25 AM","Name of speaker":["1a4a441d-ee6b-45c9-8b84-0c60dd412cbe"],"Event":"Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany","Speaker":"Jordan Romeyer Dherbey","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:25 AM - 11:40 AM","Name of speaker":["b3d03715-7585-46a6-b31d-98440b9c5a86"],"Event":"Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":"Wednesday","Length of talk":["10 min."],"Affiliation":"ICMR- National Institute of Cholera and Enteric Diseases","Speaker":"Bani Mallick","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:40 AM - 11:50 AM","Name of speaker":["909c2508-9568-4ba0-85b8-10247ee7f7fc"],"Event":"Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":"Wednesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"},"Speaker":"Chair: Michael Koeris","Location":"Purce Hall","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Event":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":"Wednesday","Length of talk":["20 min"],"Speaker":"Michael Koeris","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:00 PM - 1:20 PM","Name of speaker":["a3dd1393-507a-4b0f-890f-c2dae8a37e70"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"PhagePro, Inc","Speaker":"Minmin Yen","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:20 PM - 1:35 PM","Name of speaker":["a7b77d41-ff9a-4650-9e3f-d4d70015a202"],"Event":"Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Locus Biosciences","Speaker":"Nick Conley","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:35 PM - 1:50 PM","Name of speaker":["3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Dominic Sauvageau","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:50 PM - 2:05 PM","Name of speaker":["13ce51a7-4f96-4116-b462-45503a847bec"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"},"Session":"Social/Fun!","Time":"2:05 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":"Wednesday","Location":"TBA","Session":"Food!","Time":"5:00 PM - 7:00 PM","Event":"Dinner (TBA)"},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"},"Session":"Poster Session","Time":"7:00 PM - 9:00 PM","Event":"Formal Poster Session/Mixer I"},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"},"Session":"Social/Fun!","Time":"6:30 PM - ?","Event":"Phage sculpture building"},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Dancing "},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 10: Ecology & Informatics II","Event":"Session 10: Ecology & Informatics II"},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":"Thursday","Length of talk":["20 min"],"Speaker":"Ryan Cook","Session":"Session 10: Ecology & Informatics II","Time":"8:30 AM - 8:50 AM","Name of speaker":["3382a9f0-80c5-473c-9528-80821b7dd0f6"],"Event":"TBA (Phage ecology)"},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Leicester","Speaker":"Sophie Harrison","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"8:50 AM - 9:05 AM","Name of speaker":["c69f71c3-ecf0-439e-af81-b6429d26e631"],"Event":"Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology and Immunology, McGill University, Montreal, Canada","Speaker":"Michael Shamash","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"9:05 AM - 9:20 AM","Name of speaker":["6bb08bf3-d20b-403c-8138-58a25cb2c6d0"],"Event":"Gut virome colonization dynamics in a humanized mouse model of early life development"},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":"Thursday","Length of talk":["60 min."],"Speaker":"[Keynote] Martha Clokie","Accepted in airtable":false,"Session":"Session 10: Ecology & Informatics II","Time":"9:20 AM - 10:20 AM","Name of speaker":["26ff67d0-686a-4347-a52e-f0c6a08d52e3"],"Event":"TBA"},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":"Thursday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"},"Speaker":"Chair: Hany Anany & TBA","Location":"Purce Hall","Session":"Session 11: Phage in food and agriculture","Event":"Session 11: Phage in food and agriculture"},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"KU Leuven, Belgium","Speaker":"Jeroen Wagemans","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"10:40 AM - 11:00 AM","Name of speaker":["25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202"],"Event":"Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Research Scientist","Speaker":"Hany Anany","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:00 AM - 11:20 AM","Name of speaker":["99692a27-5cb0-46c6-b341-74f5d6701ad2"],"Event":"Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Department of Food Science, University of Tennessee, Knoxville, TN","Speaker":"Thomas Denes","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:20 AM - 11:40 AM","Name of speaker":["5d4dea8f-f420-4179-9773-78fcd7929c63"],"Event":"Overcoming hurdles for phage applications in food safety with directed evolution"},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"SCIPHAGE","Speaker":"Viviana Clavijo","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:40 AM - 11:55 AM","Name of speaker":["81f9417a-d86c-4e6b-b125-481ad425ca35"],"Event":"SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":"Thursday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 12: Molecular phage biology II","Event":"Session 12: Molecular phage biology II"},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Max Planck Institute for Terrestrial Microbiology, Marburg, Germany","Speaker":"Katharina Höfer","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:00 PM - 1:20 PM","Name of speaker":["f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae"],"Event":"Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Janine Bowring","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:20 PM - 1:35 PM","Name of speaker":["03894d69-8250-477b-bdb9-279325e1db10"],"Event":"Genomic mobilisation by rRNA operon recombination – another route of phage transduction"},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"School of Life Sciences, University of Warwick, Coventry, UK","Speaker":"Rebecca Quinn","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:35 PM - 1:50 PM","Name of speaker":["163cfe1e-0c11-4f53-ae42-d91dd3a1d516"],"Event":"Phage tRNAs Subvert Host Resistance"},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia","Speaker":"Valentina Andrea Floccari","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:50 PM - 2:05 PM","Name of speaker":["24959fbb-214c-49cb-aac7-573850ffcc34"],"Event":"Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Biology, University of Idaho","Speaker":"Tracey Peters","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:05 PM - 2:20 PM","Name of speaker":["7d737977-f461-42e3-b38d-44612cf790c4"],"Event":"Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Department of Medicine, McMaster University","Speaker":"Gayatri Nair","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:20 PM - 2:30 PM","Name of speaker":["f90b3af0-02da-4596-8063-5fb6fbbb1b59"],"Event":"Biasing Bacteriophage Behaviour"},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada","Speaker":"Jieting Lin","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:30 PM - 2:40 PM","Name of speaker":["a61583c9-528b-4adc-962e-e6a287b2c676"],"Event":"Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":"Thursday","Length of talk":["15 min"],"Session":"Session 12: Molecular phage biology II","Time":"2:40 PM - 2:55 PM","Event":"Closing Remarks / Future Meeting"},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Poster Session","Time":"3 PM - 5:00 PM","Event":"Formal Poster Session/Mixer II "},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Social/Fun!","Time":"3 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt: Hike to beach"},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":"Thursday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"},"Location":"Olympia","Session":"Social/Fun!","Time":"5 PM - 9:00 PM","Event":"Adventure out into Olympia for dinner and an evening on the water. "},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":"Friday","Date & Time":{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"},"Session":"Social/Fun!","Event":"Mt. Rainier hike!"}],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["Quadram Institute, UK"]],"LQJ@":[["Instructor: Evelien Adriaenssens"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Viromics: Viral community analysis with metagenomics"]]},"created_time":1687798566572,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","version":492,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["TAILOR Labs, Baylor College of Medicine"]],"LQJ@":[["Instructor: Justin Clark "]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},"created_time":1687798566573,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"320fbd52-2c2b-475f-b2da-07864683da29","version":285,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:30 - 1:30 PM"]],"title":[["BBQ Welcome lunch at Evergreen"]]},"created_time":1687803510356,"last_edited_time":1689391195918,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","version":391,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"LQJ@":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Genomics/PATRIC)"]]},"created_time":1687798574821,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","version":423,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"B:Eq":[["Phages for Global Health"]],"LQJ@":[["Instructor: Tobi Nagel & Fran Hodges"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Biobanking)"]]},"created_time":1687798577371,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","version":188,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687799240915,"last_edited_time":1689391199074,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","version":121,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["6:30 PM - 8:30 PM"]],"title":[["(TBC) Workshop Extension"]]},"created_time":1689380004207,"last_edited_time":1689391180080,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","version":441,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:30 PM"]],"title":[["Informal Poster Session "]]},"created_time":1687803348235,"last_edited_time":1689390202574,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","version":153,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1687803491538,"last_edited_time":1689390204139,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","version":155,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 1: Plenary talks"]],"title":[["Session 1: Plenary talks"]]},"created_time":1689384912122,"last_edited_time":1689390237972,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","version":238,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:30 AM - 8:45 AM"]],"~Dke":[["8:30 AM"]],"title":[["Phagebiotics Welcome!"]]},"created_time":1687799401390,"last_edited_time":1689390207153,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9914254b-f117-427d-a18e-942c13978d1a","version":281,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Martin Loessner"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:45 AM - 9:05 AM"]],"zo?d":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:45 AM"]],"title":[["Bacteriophages by design: tiny killers and smart detectives"]]},"created_time":1687799405505,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","version":253,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Quadram Institute Bioscience"]],"LQJ@":[["Evelien Adriaenssens"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["9:05 AM - 9:25 AM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1015"]],"title":[["What’s going on with phage taxonomy and is it really necessary?"]]},"created_time":1688512415031,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","version":165,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"LQJ@":[["Chair: Teagan Brown & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"title":[["Session 2: Ecology & Informatics I"]]},"created_time":1689385218335,"last_edited_time":1689390232321,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","version":200,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"LQJ@":[["Gary Trubl"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:25 AM - 9:45 AM"]],"zo?d":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1035"]],"title":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},"created_time":1687825729361,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","version":178,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Harvard Medical School"]],"LQJ@":[["Sian Owen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:45 AM - 10:05 AM"]],"zo?d":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1055"]],"title":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},"created_time":1689054446060,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","version":233,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"Mf`v":[["CAB"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:05 AM - 10:25 AM"]],"~Dke":[["10:05 AM"]],"title":[["Break"]]},"created_time":1687799413680,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","version":301,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Globe Institute, University of Copenhagen, Denmark"]],"LQJ@":[["Thomas Sicheritz-Pontén"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:25 AM - 10:45 AM"]],"zo?d":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},"created_time":1687799423553,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","version":323,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University at Buffalo"]],"LQJ@":[["Kathryn Kauffman"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:45 AM - 11:05 AM"]],"zo?d":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["2"]],"title":[["Uncovering the roles of phages in the oral microbiome"]]},"created_time":1688512413646,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","version":324,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jan Zheng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:05 AM - 11:25 AM"]],"zo?d":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},"created_time":1688512659324,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","version":340,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phase Genomics, Inc."]],"LQJ@":[["Benjamin Auch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:25 AM - 11:40 PM"]],"zo?d":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1145"]],"title":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},"created_time":1688087779835,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","version":397,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Yishay Pinto"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1130"]],"title":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},"created_time":1688087778316,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"43b54100-7643-4867-8231-1727a947cd4d","version":169,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12-1"]],"title":[["Lunch"]]},"created_time":1687799445188,"last_edited_time":1689391206119,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","version":35,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 3: Phage defense"]],"title":[["Session 3: Phage defense"]]},"created_time":1689385244780,"last_edited_time":1689390383379,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","version":311,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Otago, New Zealand"]],"LQJ@":[["Peter Fineran"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1025"]],"title":[["Anti-CRISPR strategies and their regulation"]]},"created_time":1688509096732,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","version":310,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"LQJ@":[["Franklin Nobrega"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1045"]],"title":[["Co-occurrence and synergism of anti-phage defence systems"]]},"created_time":1687799437045,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","version":242,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, McMaster University, Hamilton, Canada"]],"LQJ@":[["Leah Sather"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1105"]],"title":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},"created_time":1687799411405,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","version":320,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Biological Sciences"]],"LQJ@":[["Thomas Todeschini"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1120"]],"title":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},"created_time":1687799425372,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","version":295,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Xu Peng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1135-1150"]],"title":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},"created_time":1687799439413,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","version":235,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"pjT:":[["2:25 PM - 2:45 PM"]],"~Dke":[["2:40"]],"title":[["Break"]]},"created_time":1687803199153,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","version":69,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"LQJ@":[["Chair: Sandra Morales & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 4: Phage therapy I"]],"title":[["Session 4: Phage therapy I"]]},"created_time":1689385265953,"last_edited_time":1689390405405,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","version":244,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"LQJ@":[["Scott Stibitz"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["2:45 PM - 3:05 PM"]],"zo?d":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3"]],"title":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},"created_time":1687804154218,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","version":408,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phage Consulting, Sydney, New South Wales, Australia"]],"LQJ@":[["Sandra Morales"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:05 PM - 3:20 PM"]],"zo?d":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["TBA (Phage therapy overview)"]]},"created_time":1689054379387,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","version":347,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Queen Astrid Military Hospital, Belgium"]],"LQJ@":[["Jean-Paul Pirnay"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:20 PM - 3:40 PM"]],"zo?d":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["340"]],"title":[["TBA (Phage therapy experience in Belgium)"]]},"created_time":1687825469236,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","version":304,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Yale University, USA"]],"LQJ@":[["Benjamin Chan"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:40 PM - 3:55 PM"]],"zo?d":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["4"]],"title":[["TBA (Phage therapy experience at Yale)"]]},"created_time":1688870910296,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","version":339,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Austen Terwilliger"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:55 PM - 4:15 PM"]],"zo?d":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["420-440"]],"title":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},"created_time":1687804152062,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","version":177,"type":"page","properties":{";:c\\":[["Monday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5-6"]],"title":[["Dinner"]]},"created_time":1687804161297,"last_edited_time":1689391211332,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","version":257,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["5:30 PM & 6:00 PM buses"]],"~Dke":[["6:10 PM - 7:00 PM"]],"title":[["Head to bus depot and go downtown to movie theater"]]},"created_time":1687804165074,"last_edited_time":1689391217591,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","version":542,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"LQJ@":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Mf`v":[["Downtown Olympia"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:30 PM"]],"~Dke":[["7:00 PM - 9:30 PM"]],"title":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},"created_time":1687804327137,"last_edited_time":1689390602372,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","version":135,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["9:30 PM, 10:15 PM, 11 PM buses"]],"title":[["Buses back to Evergreen"]]},"created_time":1689385721108,"last_edited_time":1689391222881,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","version":77,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"LQJ@":[["Chair: Gina Suh & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 5: Phage therapy II"]],"title":[["Session 5: Phage therapy II"]]},"created_time":1689385327067,"last_edited_time":1689390510980,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","version":158,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["10 min."]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:30 AM - 8:40 AM"]],"~Dke":[["8:30 AM"]],"title":[["Introduction to keynote"]]},"created_time":1687804872919,"last_edited_time":1689390517374,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","version":418,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Diane Shader Smith"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:40 AM - 9:40 AM"]],"zo?d":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:40"]],"title":[["Keynote TBA (Phage therapy patient/parent experience)"]]},"created_time":1687804875083,"last_edited_time":1689390533282,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","version":277,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jessica Sacher"]],"PvYj":[["Yes"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["9:40 AM - 10:00 AM"]],"zo?d":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940"]],"title":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},"created_time":1687803978208,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","version":339,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Toronto"]],"LQJ@":[["Greg German"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:00 AM - 10:20 AM"]],"zo?d":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["10"]],"title":[["TBA (Phage therapy experience in Canada)"]]},"created_time":1688514223660,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","version":90,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10:20 AM"]],"title":[["Break"]]},"created_time":1688510819582,"last_edited_time":1689390856637,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","version":440,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"LQJ@":[["Talk - Chris Shafer "]],"PvYj":[["No"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:40 AM - 10:55 AM"]],"zo?d":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1040"]],"title":[["TBA (Patient experience)"]]},"created_time":1688870878668,"last_edited_time":1689390547176,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","version":272,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["5 min"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:55 AM - 11:00 AM"]],"~Dke":[["1055"]],"title":[["Introduction to keynote"]]},"created_time":1687804891380,"last_edited_time":1689390854168,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","version":295,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["[Keynote] Steffanie Strathdee"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["11:00 AM - 12:00 PM"]],"zo?d":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["11am"]],"title":[["TBA (Phage therapy experience in San Diego)"]]},"created_time":1687824627233,"last_edited_time":1689390550195,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","version":96,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687824632680,"last_edited_time":1689391227320,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","version":41,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"title":[["Session 6: Understanding & improving phage therapy"]]},"created_time":1689385344622,"last_edited_time":1689390887337,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3918b591-a398-4a45-a808-38c6d79323c3","version":251,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["Katrine Whiteson"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:05 AM"]],"title":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},"created_time":1687824774421,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"11b1742c-9e64-4811-a371-6bf962e05694","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"LQJ@":[["Sabrina Green"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},"created_time":1687824793158,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","version":361,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"LQJ@":[["Kevin Burke"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["140"]],"title":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},"created_time":1687803973490,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","version":210,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"LQJ@":[["Tiffany Luong"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["155"]],"title":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},"created_time":1687825345820,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","version":466,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"LQJ@":[["Magdalena Unterer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220-235"]],"title":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},"created_time":1687799421442,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","version":298,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Rime Bioinformatics SAS, Palaiseau, France"]],"LQJ@":[["Antoine Culot"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:25 PM - 2:40 PM "]],"zo?d":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},"created_time":1689241721977,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","version":249,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Jiemin Du"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:40 PM - 2:55 PM"]],"zo?d":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["225-240"]],"title":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},"created_time":1687824771581,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["2:55 PM - 3:15 PM"]],"~Dke":[["240"]],"title":[["Break"]]},"created_time":1687824801783,"last_edited_time":1689390566824,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","version":172,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"LQJ@":[["Susan Lehman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:15 PM - 3:35 PM"]],"zo?d":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3:00"]],"title":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},"created_time":1687825464297,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","version":243,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"LQJ@":[["Katarzyna Danis-Włodarczyk"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:35 PM - 3:50 PM"]],"zo?d":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},"created_time":1687804889505,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","version":225,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"LQJ@":[["Qingquan (Kevin) Chen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:50 PM - 4:05 PM"]],"zo?d":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["335-350"]],"title":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},"created_time":1688514225625,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","version":268,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"LQJ@":[["Gregory Resch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:05 PM - 4:25 PM"]],"zo?d":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},"created_time":1687824778489,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","version":341,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Paul Bollyky"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:25 PM - 4:45 PM"]],"zo?d":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM -10:05 PM"]],"title":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},"created_time":1687824776474,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","version":66,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687825706407,"last_edited_time":1689391232151,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","version":111,"type":"page","properties":{";:c\\":[["Tuesday"]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 7:00 PM"]],"~Dke":[["6:00 PM - 7:00 PM"]],"title":[["Informal Poster session "]]},"created_time":1687825710832,"last_edited_time":1689390577528,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","version":504,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["120 min"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"LQJ@":[["Evergreen Chronology of Inspiration Panel"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},"created_time":1687825713435,"last_edited_time":1689390587466,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","version":100,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9 PM - ?"]],"title":[["Celebration/Dancing"]]},"created_time":1687825714716,"last_edited_time":1689390835462,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","version":51,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 7: Phage and the immune system"]],"title":[["Session 7: Phage and the immune system"]]},"created_time":1689385364350,"last_edited_time":1689390824571,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","version":226,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, USA"]],"LQJ@":[["Dwayne Roach"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},"created_time":1687803976098,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","version":173,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"LQJ@":[["Krystyna Dabrowska"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:50 AM - 9:10 AM"]],"zo?d":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["850"]],"title":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},"created_time":1687803197335,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","version":177,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Philip Lauman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:10 AM - 9:25 AM"]],"zo?d":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["910"]],"title":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},"created_time":1687825352404,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","version":236,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["College of Life and Environmental Sciences, University of Exeter"]],"LQJ@":[["Meaghan Castledine"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:25 AM - 9:40 AM"]],"zo?d":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["925"]],"title":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},"created_time":1687804887674,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","version":198,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Léa Zinsli"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:40 AM - 9:55 AM"]],"zo?d":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["210"]],"title":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},"created_time":1687824768936,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","version":303,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"LQJ@":[["Thomas Smytheman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:55 AM - 10:15 AM"]],"zo?d":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940-955"]],"title":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},"created_time":1687825475724,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"944c9a63-de56-4d06-b8cd-06558125646e","version":155,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"pjT:":[["10:15 AM - 10:35 AM"]],"~Dke":[["955"]],"title":[["Break"]]},"created_time":1688512417106,"last_edited_time":1689390828482,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","version":35,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"title":[["Session 8: Molecular phage biology I"]]},"created_time":1689385380738,"last_edited_time":1689390817548,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"LQJ@":[["Vivek Mutalik"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:35 AM - 10:55 AM"]],"zo?d":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:25 AM"]],"title":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},"created_time":1687799457743,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e149194-e542-4204-8062-fd608eec8872","version":249,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Enea Maffei"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:55 AM - 11:10 AM"]],"zo?d":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},"created_time":1687803193040,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","version":327,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Carmen Gu Liu"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:10 AM - 11:25 AM"]],"zo?d":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},"created_time":1687825727042,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","version":350,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"LQJ@":[["Jordan Romeyer Dherbey"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:25 AM - 11:40 AM"]],"zo?d":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["150"]],"title":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},"created_time":1687803195265,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["10 min."]],"B:Eq":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"LQJ@":[["Bani Mallick"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:40 AM - 11:50 AM"]],"zo?d":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["930-945"]],"title":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},"created_time":1687825724713,"last_edited_time":1689390622730,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","version":42,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687825725697,"last_edited_time":1689391247104,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","version":61,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"LQJ@":[["Chair: Michael Koeris"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"title":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},"created_time":1689385397612,"last_edited_time":1689390775948,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","version":418,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"LQJ@":[["Michael Koeris"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["355"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825471094,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","version":190,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["PhagePro, Inc"]],"LQJ@":[["Minmin Yen"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["410"]],"title":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},"created_time":1687825467340,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","version":239,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Locus Biosciences"]],"LQJ@":[["Nick Conley"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["425"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825472550,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","version":298,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Dominic Sauvageau"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["440-455"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825477708,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","version":193,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["2:05 PM - 5:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1688513391651,"last_edited_time":1689390780669,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","version":175,"type":"page","properties":{";:c\\":[["Wednesday"]],"Mf`v":[["TBA"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 7:00 PM"]],"~Dke":[["5:00 PM - 7:00 PM"]],"title":[["Dinner (TBA)"]]},"created_time":1688513047039,"last_edited_time":1689391243919,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","version":233,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["Formal Poster Session/Mixer I"]]},"created_time":1688513045165,"last_edited_time":1689390784399,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","version":114,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:30 PM - ?"]],"~Dke":[["6:30 PM - ?"]],"title":[["Phage sculpture building"]]},"created_time":1688881537706,"last_edited_time":1689390731272,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7781829a-04c3-488d-8c00-67cbfa195279","version":72,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9:00 PM - ?"]],"title":[["Dancing "]]},"created_time":1688513043334,"last_edited_time":1689390786731,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","version":56,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"title":[["Session 10: Ecology & Informatics II"]]},"created_time":1689385411869,"last_edited_time":1689390736908,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ac725466-3339-4427-9079-434d80ade7b9","version":319,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"LQJ@":[["Ryan Cook"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220"]],"title":[["TBA (Phage ecology)"]]},"created_time":1688512414351,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","version":386,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Leicester"]],"LQJ@":[["Sophie Harrison"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:50 AM - 9:05 AM"]],"zo?d":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["235"]],"title":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},"created_time":1688512411541,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"LQJ@":[["Michael Shamash"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:05 AM - 9:20 AM"]],"zo?d":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1115"]],"title":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},"created_time":1687825730087,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","version":290,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Martha Clokie"]],"PvYj":[["No"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:20 AM - 10:20 AM"]],"zo?d":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["TBA"]]},"created_time":1688514593287,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","version":160,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10"]],"title":[["Break"]]},"created_time":1688088803519,"last_edited_time":1689390791508,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5489e88d-538f-4a44-804d-ee83ee558203","version":69,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"LQJ@":[["Chair: Hany Anany & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"title":[["Session 11: Phage in food and agriculture"]]},"created_time":1689385433340,"last_edited_time":1689390765437,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2e95f701-433d-46d7-b576-3763b363edf7","version":232,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["KU Leuven, Belgium"]],"LQJ@":[["Jeroen Wagemans"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["10:40 AM - 11:00 AM"]],"zo?d":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1030"]],"title":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},"created_time":1688512255481,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","version":228,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Research Scientist"]],"LQJ@":[["Hany Anany"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:00 AM - 11:20 AM"]],"zo?d":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1050"]],"title":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},"created_time":1688512253803,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","version":245,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"LQJ@":[["Thomas Denes"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:20 AM - 11:40 AM"]],"zo?d":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1110"]],"title":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},"created_time":1688512251773,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","version":257,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["SCIPHAGE"]],"LQJ@":[["Viviana Clavijo"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1125"]],"title":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},"created_time":1687825723153,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","version":90,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1688088805159,"last_edited_time":1689391256910,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","version":40,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"title":[["Session 12: Molecular phage biology II"]]},"created_time":1689385453912,"last_edited_time":1689390755122,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","version":225,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"LQJ@":[["Katharina Höfer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1pm"]],"title":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},"created_time":1687799450907,"last_edited_time":1689390664639,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"581507dc-533e-4600-9215-03f0e000393d","version":329,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Janine Bowring"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},"created_time":1687825728292,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","version":294,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"LQJ@":[["Rebecca Quinn"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["205"]],"title":[["Phage tRNAs Subvert Host Resistance"]]},"created_time":1687799408892,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","version":222,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"LQJ@":[["Valentina Andrea Floccari"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["845"]],"title":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},"created_time":1687825727796,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","version":248,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, University of Idaho"]],"LQJ@":[["Tracey Peters"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:05 PM - 2:20 PM"]],"zo?d":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["915"]],"title":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},"created_time":1688512649947,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","version":310,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Department of Medicine, McMaster University"]],"LQJ@":[["Gayatri Nair"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:20 PM - 2:30 PM"]],"zo?d":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9"]],"title":[["Biasing Bacteriophage Behaviour"]]},"created_time":1687799452995,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","version":267,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"LQJ@":[["Jieting Lin"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:30 PM - 2:40 PM"]],"zo?d":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1140-1155"]],"title":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},"created_time":1688878455809,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:40 PM - 2:55 PM"]],"~Dke":[["250"]],"title":[["Closing Remarks / Future Meeting"]]},"created_time":1688514591043,"last_edited_time":1689390673609,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","version":255,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:05 PM - 5:00 PM"]],"title":[["Formal Poster Session/Mixer II "]]},"created_time":1688088808511,"last_edited_time":1689390674834,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","version":261,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:00 PM - 5:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},"created_time":1688088811059,"last_edited_time":1689390678171,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","version":183,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Mf`v":[["Olympia"]],"R\\:D":[["Social/Fun!"]],"pjT:":[["5 PM - 9:00 PM"]],"title":[["Adventure out into Olympia for dinner and an evening on the water. "]]},"created_time":1688513305939,"last_edited_time":1689390724489,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c39de849-001b-4ae2-866a-68f4655eed15","version":84,"type":"page","properties":{";:c\\":[["Friday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"R\\:D":[["Social/Fun!"]],"title":[["Mt. Rainier hike!"]]},"created_time":1689388334090,"last_edited_time":1689390721716,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":201,"visible":false,"property":">>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"FmK{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"fb24f8e8-7c0e-4774-8d4f-6bec35029c13","version":292,"type":"table","name":"For copying to final","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":225,"visible":true,"property":">>Gm"},{"width":124,"visible":true,"property":";:c\\"},{"width":285,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"pjT:"},{"width":286,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":159,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","version":818,"type":"table","name":"Sorted by name","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":176,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zo?d"},{"width":194,"visible":true,"property":">Gm"},{"width":121,"visible":true,"property":"<\\t`"},{"width":200,"visible":true,"property":"R\\:D"},{"width":372,"visible":false,"property":"_HTj"},{"width":200,"visible":false,"property":"Mf`v"},{"width":200,"visible":false,"property":"pjT:"}],"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"page_sort":["80d7da9f-82c3-406e-9741-bcc1b9cff1a9","b8f20d87-b39a-4064-a023-6abfca157c88","3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","e86b039d-5c7a-4e4d-8623-a6b08cb24a48","320fbd52-2c2b-475f-b2da-07864683da29","5ff3d332-073e-4c93-b127-e69f9df169d5","d179a076-b691-46ad-a752-ce32dfa11bcd","1dda772e-1e87-4a0c-a582-a191ff304204","b8eee1a0-1cc3-42fd-8b29-ff4e3c581d19","26108f23-c750-4058-b26f-8420fb7748a3","73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","1d704fe9-bd23-4fb7-9d74-a974c65e2244","bf7b51df-bfff-459b-85dc-ff4fc776c9aa","7cf59d05-a856-4633-978a-a56a880f0cf8","455e36c6-1fcc-41db-89d5-4e5a959c349a","dd04346a-c48c-4d7c-89ac-5e1920576bfa","1d996c31-e552-4e3f-86d5-681bd1884843","75dc8c11-862a-498b-8cea-c14a7c6a18e9","dff47c86-ccda-4517-adbb-34074ba2ffa4","58ca3e2e-cbc1-43a5-a9bf-710bc2264a6f","fea14a8b-2951-4dff-acac-14de4789184d","3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","07279636-6443-4a25-abd5-07a40b1882c9","ba3bfc5f-241c-49ce-ae27-2ba7527b27d6","d5e79306-ddfc-4d96-9ebd-47eaec869c27","cfecf9c5-fd50-4930-9264-2f7c3726672d","b0a8cfd9-bf0f-4696-9bdd-b0b05d7cec71","9914254b-f117-427d-a18e-942c13978d1a","a82c044e-1394-4475-92bf-9c43e718a38c","3918b591-a398-4a45-a808-38c6d79323c3","c556f9b3-2a23-4bf2-a7cd-fff5434f949a","d0c49619-86e8-43cd-9df3-86dd7c1c1d1d","4c230034-857b-4aff-b554-3cf22b957cdd","8d47b39b-636b-47a2-ac35-5f3051689147","25b27f0c-aa35-4926-b595-208c5231130e","148eaf01-e456-4435-9314-0066f1d2d6de","7916e9a3-6952-4d49-83b8-2e697415d72a","b7abe37a-8c9c-4efc-83a8-0ccc36de5d1d","bfb853d9-b1e6-481a-970e-6c100c0f16c7","21b8ee51-3565-496e-84ff-8782203c072c","b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","c67fb2e5-b1ab-4d56-af58-d8d56db18c88","e693a814-7ac1-4664-b3c2-cee5d3549c5a","a37f9cb1-3d9d-459a-a1c4-68bf475ea444","b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","9c167305-10ba-4b34-a092-7a5ea13239b4","d2710181-6321-4d71-88c7-5f049d2dfd57","ee3dcdd1-d7bc-4809-9caf-ce8bec318384","d36485a7-d749-4512-a97f-8a64bdec62f4","43b54100-7643-4867-8231-1727a947cd4d","9d48e9c9-260f-41b2-a21e-9441bab74ca0","e3f09768-d770-415c-b768-b8278b5482a0","87fe14a6-6042-483b-8261-a3d7a9596298","dab8ef42-154f-4e4b-b34a-7da4616f7368","edfe4fce-28e9-4b98-a80a-6cf3afa53856","4e149194-e542-4204-8062-fd608eec8872","cdb99eef-cdbd-4aaa-a678-dc089739c335","e15b3ca5-974f-4409-a879-31857807f86e","8963ee06-88f2-4f4b-a3cf-5e6ee6244bd6","394bdbe9-ca41-4113-b5e0-1fc9729d0e11","cfde895b-a32e-4fef-8c75-85755601e11d","d72b0b26-a76a-426b-aec4-8c87f84ed27f","50505d83-a8c8-460e-a976-4f53b6e15dff","c26cd957-9549-41af-ab46-126152046e11","4b93b494-6ace-4fe2-91ae-5a11a4b2698f","16678ca8-1e8a-497e-a3d2-bf8edab31a3b","e992eab2-5475-424e-abaa-de0736c4c3c5","26cddb2d-015e-4a96-a665-5c3ae68f958f","634cc05d-293e-4549-a903-dfb8d19b9e4b","f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","20917259-a2cf-40c9-a72e-3374fe2062ea","5415f867-573e-4b4d-bfc0-e3581989dbe5","d2e78427-4fb8-4a28-95c9-b30cb1f509f5","bf6fe550-9932-4e46-ba29-7745a0608549","8bcad3aa-f2d4-4f61-895f-ad066706dfca","30efc624-9c89-4337-a70d-a427146c730b","6a8181aa-972a-4e87-b78f-30f05a5f7387","b5683451-84aa-4bd7-a17d-b370db7980be","138df2d1-4629-4211-9ea0-396f458d2b4c","5499e98a-832c-4a8c-aba1-ec1d9f57292b","a3cd60e9-c694-46fe-a631-f24b44da1cdc","fcead5f3-6947-423d-8683-0c65e83ed8f9","5ba12c78-37ec-4f42-8ed9-e8b1b4abca41","375dd916-026d-4e76-9f86-89ba2d2482f3","c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","45e610f2-5dab-4cf8-8976-62ef58f65417","25bad495-34fe-4db7-b879-f92f359edb71","229860cd-cae1-483d-9476-14ce608bc0ab","d04deead-44b9-4e15-97ff-af4faac462b8","3b540bde-6c3d-4c1a-b7bb-682eba1404df","21dfef19-a016-4520-bc9a-6eaac35c0123","d8b23bc3-90e8-4486-8eb3-8287563d77af","c297bc53-3c36-45af-95b9-867bd1763528","b3af1c11-d888-4292-b1c9-49004d6d90bd","a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","7e3d2dd1-b680-4c11-bfe5-f5f9510a099b","eaf6242a-4ccc-42d0-9df4-64516ae6da10","bd7f78f0-9879-4a81-9843-020c0aedb8bf","15501ed4-0d22-4449-bc23-74bf5e810fe5","cd74805b-8867-46ba-bf38-b8b720f697a8","8927a91f-eff6-42c1-9dd8-0fc959c0feee","ab6c1c7f-e4dc-4292-a336-a8aeeeea5231","947742f7-73c1-4b7d-b535-14fe28df6455","ca2f9f2d-3cc0-4add-92e4-24d4b79b4811","bff2728f-9ccd-4f6d-80a0-bde174b96ac7","8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","9919ea53-db46-44e6-b90a-37dac36054a2","abb3181f-8478-447e-8ef4-4f798c674ac0","f423b719-8bc2-446a-af8f-fe6cedc5db93","1cf907e2-8eef-44ff-8381-1aeba6f6fe20","c2c58aff-b2bd-478e-a740-d4959d9ac154","ed30e6f6-7c05-4756-a13f-a8d83d34bec6","11b1742c-9e64-4811-a371-6bf962e05694","2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","1cef6663-9aaf-4d01-a450-e5e863af04b8","3b88ee39-8868-4cfb-83bb-1f234e16724d","dc003b5e-bd14-4150-af35-cf1eca003e13","c0de3776-ede0-4c30-be88-288a19604379","dbb449a2-7df2-4821-a94d-400b65aed1e0","0a75393a-f05c-441a-b978-0b033e7b3dcb","a3a8dd50-043c-4586-9e6a-165dae46e7cd","1efe468a-0193-4078-a1b4-66c36ef05846","a42cc434-71a4-47e5-8950-2ff2d585e4bc","d1569dba-23b6-46a0-9556-b71ff0727e26","a259cd5d-0a45-40d2-98d7-afb774a00554","4180d7bc-d11f-4d4f-be7b-801320cf94aa","cfc42d63-ec72-443e-a1e0-7cd15cd1b6b2","6bfdf00f-db69-4def-ab47-e13a8cd7b673","6028f4b4-f271-472c-a2c8-acb11caa3fff","60a853d5-098c-4f34-b9dd-46a58efe5216","c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","67f94fd5-db64-4d62-bea2-987fa2be2f69","c1b92230-2e51-412e-8149-d83f131e77e7","f09da0ac-5747-44e4-bf6a-4291fee3d9a2","1bb96063-db6c-4cbe-af69-2d00c6a7b369","2216cb44-05b3-490e-84e6-f928b4ed2aef","276d1e16-7a7c-4552-b2a5-6425ef44907b","5df0843e-6388-403c-aff3-0fd826eb55bf","e23c80b4-93af-47c4-a213-c2fdf3d919bf","d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","2dc746fa-8f4f-423d-ab3b-646834be8e8a","be032e3f-6934-41cb-82dc-c1c6f47f5142","f3b72cc7-1135-4121-bb1a-e14befc8eb4f","b706798a-20fd-460d-b182-3528d57c3743","3137dcf5-8634-4567-825e-b680eba551d9","1a64bcc6-373d-4d33-a78b-82fa0e1d2c21","6c056d5a-a4aa-423f-ac4e-5da45899f8c3","d8b88202-9bbb-4794-a41c-ade28f86ec79","f695b133-d79e-4a28-806a-c7816b2b20e5","8f11570b-97d7-432c-9e08-8d81c364a9bd","cba0e342-eb23-490d-bcb3-5ad702ffe616","ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","14d54749-63ad-4780-8bf0-bfd9ed9db335","a1307bb9-ff3e-4f34-a82b-0f00e80bb259","ca5acf7a-8883-4fdd-8645-c20d646b6ea4","944c9a63-de56-4d06-b8cd-06558125646e","1dbba8a9-1e44-443d-b3f5-1215cb7684c7","d78d4962-bc5b-465f-8021-218e20f5fc7a","29cbb222-2f1b-4e94-9906-136598c6a36e","8c311bef-4951-42b3-af2b-64f4b1a8533b","9c16ce62-0fa0-40bc-9aa0-33562495d8e0","0be688d3-4b95-466c-99c7-1e10555047ca","435f531a-0c04-4507-8cdd-8ab2ba2098a6","29178e11-4d8e-4bfb-a185-ad6ef228be55","8a299808-90ad-4a99-a961-487a74113602","20593fb1-7b98-4ad4-b665-bd51d17ea110","76c088a7-e1d9-4cf3-8c2a-a089d5872a73","8e803c64-fa50-43d5-8b56-3166792858c6","921231f0-8471-4717-872a-ed53c83b9150","4599af88-8851-4ad4-9120-ac7720b2a9b0","6148d44a-7933-4d98-8ce1-d22be7db73d1","ca9891b7-6b3d-4afe-a3b4-37e49274f963","220244b9-e22e-4c55-921e-2f2d98fa01a0","4a5045e7-0d9c-44bc-b079-8a0f32dc2ab8","df60a7dd-daaa-4aae-ad38-a8977ae8223c","b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","27a95a36-f080-43c2-8b8c-1a10c814f35a","fbae94a2-65d1-4db9-b48e-eb296215e7d3","ddafcc94-0025-4912-9da6-2bd214d70984","97f6e680-6894-4879-aae5-2d099a0439fe","2550fd85-0e8c-40bf-aa42-30b6fe394df3","9af07187-e2f0-4dca-9f87-175ecc1c41ea","c9a4078e-fec0-4a47-8779-2552487e4143","71950354-ce16-4acb-9537-926885811e17","bf482d4d-f2b1-4160-99bb-9ded585ff518","a68d9e08-8804-41ae-88f3-af9fc9f52b6a","cde43b84-f7b5-4076-b0fa-d9883edbe118","949bdd60-dd5d-4871-9248-16183ae117bb","9d80a5a4-f80a-4344-86c1-fffe5724a93f","0d914c29-ad5e-4682-9eb5-cccd8b35d156","15e8b124-9e95-4d7d-937d-a7448126d443","789fff4a-31ae-4724-8214-cbad2a03bc6c","c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","37f64d6c-856a-45d4-ae1c-787aa2eaac29","a604a22d-e533-4b87-bb55-09adc2af00ca","7781829a-04c3-488d-8c00-67cbfa195279","c7139154-3923-4dee-8181-a6243de4c976","f3ac9766-0302-4522-906d-45ad7a8ea060","2b86d329-32b9-4e95-8c15-fe6ea90ef4eb","a3ff1019-73c2-46ef-a917-0c749dc7a66b","ac6cc1d7-0745-47fd-9b87-84c63329039f","581507dc-533e-4600-9215-03f0e000393d","5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","471524da-ac95-4e70-834e-cad6e07afe1f","8db54920-85c2-457c-9ba7-9901243cfbbc","bf1e263f-818f-4196-ab92-7167aeedecf8","e888c902-3fb5-4e97-9db4-39c540023ab7","f2624eb4-9955-441d-870a-86d77cfc9f29","a6427d07-59df-4500-89bf-63153e845c67","2e95f701-433d-46d7-b576-3763b363edf7","d8bc49a0-033d-43f7-a57c-e3a267f55879","4e34ad83-a93f-4fad-a000-625e1e7ce92a","182fb594-883e-45ca-9b0a-f7dfb57f2ba7","26eaaf74-61d5-4b57-a7c1-d644e164302e","bb0c3590-afbe-4528-aba6-bda243798293","2c5431f2-8923-4b9b-adfb-344533552bdd","3f82ea9d-6118-49b3-a167-cdab2fe82497","ce6df1d4-f38a-4649-bc2c-b847e48b5056","e2a17874-e8e5-44fe-aff2-f2cb9c56098a","aa5cf4e8-a847-4cd3-80a2-ee1de8369ce4","a22b1812-888d-4ad8-8e0c-40ed5be324d4","fe40b9d7-4313-43be-82cc-2d57a0cdb61b","12d07a36-a3c7-49cc-8fe3-63d060d04339","86f3cc7b-6590-4819-9f87-95ec5c6c6c1d","6e778f3a-e16d-4970-a3af-0b7dddb43b64","e79b83e8-55bc-4750-b4f7-9646647d8d19","1a56df20-9634-4e16-873a-db82c54b9d48","7b0e1ccd-df28-481e-9d87-3d9838200395","6f7a547e-f143-4997-8363-808723cadb92","ee186a6d-8647-4202-8f1d-516c4d4229dc","1d86cd3c-e014-46e0-8f73-0e70d4287cd5","85295232-d496-49cd-89d6-30495d7e4cb4","6ce6f053-2c4b-4987-bf3c-d2a5ec03ecf2","3d79767d-be48-4947-ab26-bf43ae1451bd","990dd017-90eb-4940-b5e4-9ac8e5f2562c","e4122488-d85f-4ea0-a801-2c23a9312574","dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","54c930a8-c75b-4cbb-91d1-ab759487c9a3","ac725466-3339-4427-9079-434d80ade7b9","d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","bd297533-496f-4d20-b81f-7ad4e0756397","3ee8e07b-eea3-4939-9055-6aff48e3e51a","a96898de-d384-45ec-961c-8f01fdb5dc73","32e0ad0e-d72f-48f0-bba4-6a3707604aaa","4007bf81-b00e-4750-b851-7ec471273bf2","40aeedb7-0877-478c-b4e4-49395f7b26cf","8673752a-79a8-4568-8deb-571cd6aab24d","69f8b658-9cfb-407d-90c6-3efc9b96835b","3e3afdd9-5775-4d05-9b9a-6bf8d515fc04","f91d821b-f4af-4f98-9c77-967120c13514","77203aa4-43b9-4b93-97bf-b1cbae4e14eb","76add0fa-5b7d-4d47-a705-8228c7a6d146","fa33325b-d6dd-4fe4-9a1f-dd7db6d78f95"],"query2":{"timeline_by":">>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"5537f8ba-2f92-467f-aca5-d43a0e59d6ab","version":32,"type":"calendar","name":"","format":{"table_properties":[{"width":308,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"=WD`"},{"width":200,"visible":true,"property":"~Dke"},{"width":329,"visible":true,"property":">>Gm"}],"calendar_properties":[{"visible":false,"property":"zo?d"},{"visible":true,"property":"R\\:D"},{"visible":true,"property":":iJn"},{"visible":true,"property":">>Gm"},{"visible":false,"property":"pjT:"},{"visible":false,"property":"_HTj"},{"visible":false,"property":"PvYj"},{"visible":false,"property":"<\\t`"},{"visible":false,"property":"=WD`"},{"visible":false,"property":"B:Eq"},{"visible":false,"property":">Gm","timeline_by":">>Gm"},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"be03b38d-8ecb-4ecf-84b2-d84948b9ed6f","version":23,"type":"table","name":"Chronological","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":228,"visible":true,"property":"title"},{"width":225,"visible":true,"property":">>Gm"},{"width":279,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"zo?d"},{"width":163,"visible":true,"property":"=WD`"},{"width":179,"visible":true,"property":"~Dke"},{"width":200,"visible":true,"property":"pjT:"},{"width":539,"visible":true,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/6c73ec32f8665032677104383c875dbf0a9205562fddbb458a412a7b596bc03900004f79820dd5ac b/.wrangler/state/v3/cache/default/blobs/6c73ec32f8665032677104383c875dbf0a9205562fddbb458a412a7b596bc03900004f79820dd5ac new file mode 100644 index 0000000..e717aa2 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/6c73ec32f8665032677104383c875dbf0a9205562fddbb458a412a7b596bc03900004f79820dd5ac @@ -0,0 +1 @@ +{"c0247cec-af5c-471f-bd90-88b31d6c260e":{"value":{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","version":534,"type":"page","properties":{"BOur":[["blogalog-welcome"]],"R`]x":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"U:SC":[["14"]],"nnr{":[["Working Notes"]],"{jf|":[["Posts"]],"title":[["Hello blogalog.net"]]},"content":["808463d9-298c-42df-9a63-f6067de8bd95","6084282b-25ba-4da5-aced-40cae9b60f04","7db72322-c992-4304-81bc-682893595a86"],"format":{"page_full_width":true,"copied_from_pointer":{"id":"31345210-5a5f-459b-b958-2d1f6b848f57","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689513547157,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"31345210-5a5f-459b-b958-2d1f6b848f57","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"dff5d33f-c8de-49c6-b57e-9dee74c51e8c":{"value":{"id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","version":40,"type":"collection_view","view_ids":["c299b379-0b56-4221-a665-8401546223f6"],"collection_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","format":{"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"copied_from_pointer":{"id":"cf47d2d7-fc40-4e8b-b019-18eb9b53e4b7","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117985,"last_edited_time":1689509987350,"parent_id":"bc1b9d83-c82d-48e3-bed9-8e05ad55e942","parent_table":"block","alive":true,"copied_from":"cf47d2d7-fc40-4e8b-b019-18eb9b53e4b7","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["blogalog homepage db"]],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"types":[{"id":"c299b379-0b56-4221-a665-8401546223f6","version":2,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|"},{"wrap":false,"width":222,"visible":true,"property":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x"},{"wrap":false,"width":100,"visible":true,"property":"nxhL"},{"wrap":true,"width":100,"visible":true,"property":"CzHM"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\"},{"wrap":false,"width":100,"visible":true,"property":"BOur"},{"wrap":false,"width":100,"visible":true,"property":"SJm?"},{"wrap":false,"width":100,"visible":true,"property":"qH[K"},{"wrap":false,"width":200,"visible":true,"property":"VZAs"},{"wrap":false,"width":200,"visible":true,"property":"UdGI"},{"wrap":false,"width":200,"visible":true,"property":"nnr{"},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","Content":[["blogalog.net"]],"Name":[["username"]]},{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","Content":[["Blogalog"]],"Name":[["Author"]]},{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","Content":[["@blogalog.net"]],"Name":[["TwitterHandle"]]},{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","Content":[["Welcome to Blogalog.net, your very own blog on the world wide web"]],"Name":[["SiteTitle"]]},{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","Content":[["Get your very own blog on the world wide web at blogalog.net! "]],"Name":[["SiteDescription"]]},{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","Name":[["SocialDescription"]]},{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","Name":[["SocialLinks"]]},{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","Name":[["Email"]]},{"id":"1434d49f-0826-4dbe-874e-9fa160091306","Content":[["🤩 Get your very own blog on the world wide web at "],["blogalog.net",[["a","http://blogalog.net"]]],["! 🤩"]],"Name":[["Short"]]},{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"]]]],"Name":[["ProfileImage"]]},{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","Files":[["blogalog-cover.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"]]]],"Name":[["CoverImage"]]},{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"]]]],"Name":[["IconImage"]]},{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","Files":[["blogalog-card.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"]]]],"Name":[["CardImage"]]},{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","Content":[["Blogalog 2023 | 🚧 Github link soon 🚧"]],"Name":[["Footer"]]},{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","Content":[["https://blogalog.net"]],"Name":[["URL"]]},{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","Type":[["Main"]],"Name":[["🚧 Web site under construction 🚧"]]},{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","Path":[["blogalog-welcome"]],"Content":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"Categories":[["Working Notes"]],"Type":[["Posts"]],"Name":[["Hello blogalog.net"]]},{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","Type":[["Main"]],"Name":[["What the heck is blogalog"]]}]}},"bc1b9d83-c82d-48e3-bed9-8e05ad55e942":{"value":{"id":"bc1b9d83-c82d-48e3-bed9-8e05ad55e942","version":198,"type":"page","properties":{"CbSI":[["dff5d33fc8de49c6b57e9dee74c51e8c"]],"KeGT":[["‣",[["p","dff5d33f-c8de-49c6-b57e-9dee74c51e8c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"zxl<":[["blogalog"]],"title":[["Blogalog Page"]]},"content":["dff5d33f-c8de-49c6-b57e-9dee74c51e8c"],"format":{"page_full_width":true,"copied_from_pointer":{"id":"07d1e163-d344-4407-b5d4-11a850a33160","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484077164,"last_edited_time":1689489285651,"parent_id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","parent_table":"collection","alive":true,"copied_from":"07d1e163-d344-4407-b5d4-11a850a33160","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"0f9f24f8-2570-4411-86a8-c10d9f788412":{"value":{"id":"0f9f24f8-2570-4411-86a8-c10d9f788412","version":57,"type":"collection_view","view_ids":["ba601f1c-872a-4179-8bb5-bc80646b99bf"],"collection_id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","format":{"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"permissions":[{"role":"reader","type":"public_permission","added_timestamp":1689481196701}],"created_time":1689477856888,"last_edited_time":1689496691127,"parent_id":"bddb327b-78d9-4e90-b58c-0acd696b21d5","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Blog-a-log List"]],"schema":{"CbSI":{"name":"Pagedata ID","type":"text"},"KeGT":{"name":"Linked Pagedata","type":"text"},"zxl<":{"name":"Slug","type":"text"},"title":{"name":"Name","type":"title"}},"types":[{"id":"ba601f1c-872a-4179-8bb5-bc80646b99bf","version":22,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":207,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zxl<"},{"width":313,"visible":true,"property":"CbSI"},{"width":369,"visible":true,"property":"KeGT"}],"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"Y>Aw"}]},"parent_id":"0f9f24f8-2570-4411-86a8-c10d9f788412","parent_table":"block","alive":true,"page_sort":["bc1b9d83-c82d-48e3-bed9-8e05ad55e942","5301eb0e-59ce-4eb1-b881-2ec7069a724a","8ad364a0-576b-4b77-b071-acce2760240b","07d1e163-d344-4407-b5d4-11a850a33160","d7bfdda6-5885-4763-b74c-a130c769b14a","65cad99e-a6af-43bd-9b53-fb9f3a62ad19","3abb17b2-5d4e-4a77-a2cc-736c73ef5932"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"bc1b9d83-c82d-48e3-bed9-8e05ad55e942","Pagedata ID":[["dff5d33fc8de49c6b57e9dee74c51e8c"]],"Linked Pagedata":[["‣",[["p","dff5d33f-c8de-49c6-b57e-9dee74c51e8c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["blogalog"]],"Name":[["Blogalog Page"]]},{"id":"8ad364a0-576b-4b77-b071-acce2760240b","Pagedata ID":[["78c3b598e05e44d9ae349e03f4758494"]],"Linked Pagedata":[["‣",[["p","78c3b598-e05e-44d9-ae34-9e03f4758494","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["shipyard"]],"Name":[["Shipyard"]]},{"id":"07d1e163-d344-4407-b5d4-11a850a33160","Pagedata ID":[["cf47d2d7fc404e8bb01918eb9b53e4b7"]],"Linked Pagedata":[["‣",[["p","cf47d2d7-fc40-4e8b-b019-18eb9b53e4b7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["jessbio"]],"Name":[["JessBio 2.0"]]},{"id":"d7bfdda6-5885-4763-b74c-a130c769b14a","Pagedata ID":[["419c29dc6d194994a9155a974657f5ad"]],"Linked Pagedata":[["‣",[["p","419c29dc-6d19-4994-a915-5a974657f5ad","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["janny"]],"Name":[["JanZheng Blogalog"]]}]}},"808463d9-298c-42df-9a63-f6067de8bd95":{"value":{"id":"808463d9-298c-42df-9a63-f6067de8bd95","version":11,"type":"collection_view","view_ids":["3ecce580-8344-42b7-96c5-5b9de945a31d"],"collection_id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","format":{"collection_pointer":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689509699048,"last_edited_time":1689513211801,"parent_id":"c0247cec-af5c-471f-bd90-88b31d6c260e","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["rabbits"]],"schema":{"@I]j":{"name":"Tags","type":"multi_select"},"title":{"name":"Name","type":"title"}},"types":[{"id":"3ecce580-8344-42b7-96c5-5b9de945a31d","version":1,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title"},{"visible":true,"property":"@I]j"}],"collection_pointer":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"808463d9-298c-42df-9a63-f6067de8bd95","parent_table":"block","alive":true,"page_sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"8902111b-71f7-4cd6-a3e0-8310802f0ba8","Name":[["peter"]]},{"id":"e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","Name":[["jasper"]]},{"id":"6ee8139d-3ca4-4349-9dd6-600f95183e50","Name":[["woof"]]}]}},"6084282b-25ba-4da5-aced-40cae9b60f04":{"value":{"id":"6084282b-25ba-4da5-aced-40cae9b60f04","version":9,"type":"collection_view","view_ids":["08848ed7-c04f-4640-a04c-749d00587f82"],"created_time":1689509906833,"last_edited_time":1689513222098,"parent_id":"c0247cec-af5c-471f-bd90-88b31d6c260e","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["rabbits"]],"schema":{"@I]j":{"name":"Tags","type":"multi_select"},"title":{"name":"Name","type":"title"}},"types":[{"id":"08848ed7-c04f-4640-a04c-749d00587f82","version":4,"type":"table","name":"","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title"},{"visible":true,"property":"@I]j"}],"collection_pointer":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"6084282b-25ba-4da5-aced-40cae9b60f04","parent_table":"block","alive":true,"page_sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"8902111b-71f7-4cd6-a3e0-8310802f0ba8","Name":[["peter"]]},{"id":"e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","Name":[["jasper"]]},{"id":"6ee8139d-3ca4-4349-9dd6-600f95183e50","Name":[["woof"]]}]}},"7db72322-c992-4304-81bc-682893595a86":{"value":{"id":"7db72322-c992-4304-81bc-682893595a86","version":3,"type":"collection_view","view_ids":["185ad20d-c79a-4219-9534-d85c614a0ada"],"created_time":1689513515323,"last_edited_time":1689513515325,"parent_id":"c0247cec-af5c-471f-bd90-88b31d6c260e","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["blogalog homepage db"]],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"types":[{"id":"185ad20d-c79a-4219-9534-d85c614a0ada","version":3,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|"},{"wrap":false,"width":222,"visible":true,"property":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x"},{"wrap":false,"width":100,"visible":true,"property":"nxhL"},{"wrap":true,"width":100,"visible":true,"property":"CzHM"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\"},{"wrap":false,"width":100,"visible":true,"property":"BOur"},{"wrap":false,"width":100,"visible":true,"property":"SJm?"},{"wrap":false,"width":100,"visible":true,"property":"qH[K"},{"wrap":false,"width":200,"visible":true,"property":"VZAs"},{"wrap":false,"width":200,"visible":true,"property":"UdGI"},{"wrap":false,"width":200,"visible":true,"property":"nnr{"},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"7db72322-c992-4304-81bc-682893595a86","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","Content":[["blogalog.net"]],"Name":[["username"]]},{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","Content":[["Blogalog"]],"Name":[["Author"]]},{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","Content":[["@blogalog.net"]],"Name":[["TwitterHandle"]]},{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","Content":[["Welcome to Blogalog.net, your very own blog on the world wide web"]],"Name":[["SiteTitle"]]},{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","Content":[["Get your very own blog on the world wide web at blogalog.net! "]],"Name":[["SiteDescription"]]},{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","Name":[["SocialDescription"]]},{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","Name":[["SocialLinks"]]},{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","Name":[["Email"]]},{"id":"1434d49f-0826-4dbe-874e-9fa160091306","Content":[["🤩 Get your very own blog on the world wide web at "],["blogalog.net",[["a","http://blogalog.net"]]],["! 🤩"]],"Name":[["Short"]]},{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"]]]],"Name":[["ProfileImage"]]},{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","Files":[["blogalog-cover.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"]]]],"Name":[["CoverImage"]]},{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"]]]],"Name":[["IconImage"]]},{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","Files":[["blogalog-card.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"]]]],"Name":[["CardImage"]]},{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","Content":[["Blogalog 2023 | 🚧 Github link soon 🚧"]],"Name":[["Footer"]]},{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","Content":[["https://blogalog.net"]],"Name":[["URL"]]},{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","Type":[["Main"]],"Name":[["🚧 Web site under construction 🚧"]]},{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","Path":[["blogalog-welcome"]],"Content":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"Categories":[["Working Notes"]],"Type":[["Posts"]],"Name":[["Hello blogalog.net"]]},{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","Type":[["Main"]],"Name":[["What the heck is blogalog"]]}]}}} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/8f0e9a503b028cb3bc14be607754ef6a5ca70b8d628f639c0b8458643bb12ed900004f59472e8966 b/.wrangler/state/v3/cache/default/blobs/8f0e9a503b028cb3bc14be607754ef6a5ca70b8d628f639c0b8458643bb12ed900004f59472e8966 new file mode 100644 index 0000000..0428eda --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/8f0e9a503b028cb3bc14be607754ef6a5ca70b8d628f639c0b8458643bb12ed900004f59472e8966 @@ -0,0 +1 @@ +{"rows":[{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","format":{"copied_from_pointer":{"id":"04978cf2-dc87-4897-ac89-ecb5916328d8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"blogalog.net","Name":"username"},{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","format":{"copied_from_pointer":{"id":"d6186c3e-3693-44a1-85dd-f2b4bd1f26c2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Blogalog","Name":"Author"},{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","format":{"copied_from_pointer":{"id":"c95aacf7-314c-49ef-8250-2e8f6611d083","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"@blogalog.net","Name":"TwitterHandle"},{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","format":{"copied_from_pointer":{"id":"6d2e9a0d-aa1f-4c93-bbac-a945bf1b87fb","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Welcome to Blogalog.net, your very own blog on the world wide web","Name":"SiteTitle"},{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","format":{"copied_from_pointer":{"id":"0143112d-4765-4299-a34e-67b39245f7db","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Get your very own blog on the world wide web at blogalog.net! ","Name":"SiteDescription"},{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","format":{"copied_from_pointer":{"id":"018e155e-dfd7-41b6-a268-250c1a60a871","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Name":"SocialDescription"},{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","format":{"copied_from_pointer":{"id":"1ac49c60-f358-499a-a402-35a96d6f207a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Name":"SocialLinks"},{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","format":{"copied_from_pointer":{"id":"0ab46a9d-82cd-4382-ae62-ac0ec4098610","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Name":"Email"},{"id":"1434d49f-0826-4dbe-874e-9fa160091306","format":{"copied_from_pointer":{"id":"da7681bd-0ae0-416f-8e73-b6619a54fecd","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"🤩 Get your very own blog on the world wide web at blogalog.net! 🤩","Name":"Short"},{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","format":{"copied_from_pointer":{"id":"7266f521-d1b5-4338-adc9-71314dc6d7a5","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog.png","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Ff07768d9-e038-4943-aa73-fbaf70351066%2Fblogalog.png?table=block&id=dbd6405c-4206-4939-a2ae-957dbfe985be&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"}],"Name":"ProfileImage"},{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","format":{"copied_from_pointer":{"id":"9c133353-da35-4979-a674-1ac14c6223a8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog-cover.jpg","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F9cfb2a72-12cd-4002-85de-c12e75862fcc%2Fblogalog-cover.jpg?table=block&id=5c3a6ee0-fa82-4328-8800-7dc1e358f2ef&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"}],"Name":"CoverImage"},{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","format":{"copied_from_pointer":{"id":"0753331c-57b7-4789-8e9b-6e8344ea5b49","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog.png","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Feac514be-bdf2-439b-838d-204d308bd71d%2Fblogalog.png?table=block&id=890e1b05-339f-4f70-a21b-bbb24cee8968&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"}],"Name":"IconImage"},{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","format":{"copied_from_pointer":{"id":"b7bd8b89-a8c5-47ea-8547-e719d5416f86","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog-card.jpg","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F209f6957-47d5-4063-894f-b09b76d1d6fa%2Fblogalog-card.jpg?table=block&id=5c487e9d-ef99-4a74-bb29-f29182534ad8&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"}],"Name":"CardImage"},{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","format":{"copied_from_pointer":{"id":"2438c884-b0ad-4e22-80f0-c9489612869a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Blogalog 2023 | 🚧 Github link soon 🚧","Name":"Footer"},{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","format":{"copied_from_pointer":{"id":"9cd1927b-5851-41d8-bfea-19dcb84d6386","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"https://blogalog.net","Name":"URL"},{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","format":{"copied_from_pointer":{"id":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Type":["Main"],"Name":"🚧 Web site under construction 🚧"},{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","format":{"page_full_width":true,"copied_from_pointer":{"id":"31345210-5a5f-459b-b958-2d1f6b848f57","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Path":"blogalog-welcome","Content":"Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!","Categories":["Working Notes"],"Type":["Posts"],"Name":"Hello blogalog.net"},{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","format":{"copied_from_pointer":{"id":"524f58e7-bec1-45be-942b-a869d419ad3f","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Type":["Main"],"Name":"What the heck is blogalog"}],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"name":"blogalog homepage db","tableArr":[{"value":{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","version":34,"type":"page","properties":{"R`]x":[["blogalog.net"]],"xOrL":[["????"]],"title":[["username"]]},"format":{"copied_from_pointer":{"id":"04978cf2-dc87-4897-ac89-ecb5916328d8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689509624693,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"04978cf2-dc87-4897-ac89-ecb5916328d8","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","version":57,"type":"page","properties":{"R`]x":[["Blogalog"]],"title":[["Author"]]},"format":{"copied_from_pointer":{"id":"d6186c3e-3693-44a1-85dd-f2b4bd1f26c2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689489293798,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"d6186c3e-3693-44a1-85dd-f2b4bd1f26c2","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","version":27,"type":"page","properties":{"R`]x":[["@blogalog.net"]],"title":[["TwitterHandle"]]},"format":{"copied_from_pointer":{"id":"c95aacf7-314c-49ef-8250-2e8f6611d083","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689484183081,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"c95aacf7-314c-49ef-8250-2e8f6611d083","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","version":187,"type":"page","properties":{"R`]x":[["Welcome to Blogalog.net, your very own blog on the world wide web"]],"title":[["SiteTitle"]]},"format":{"copied_from_pointer":{"id":"6d2e9a0d-aa1f-4c93-bbac-a945bf1b87fb","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689484211249,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"6d2e9a0d-aa1f-4c93-bbac-a945bf1b87fb","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","version":212,"type":"page","properties":{"R`]x":[["Get your very own blog on the world wide web at blogalog.net! "]],"title":[["SiteDescription"]]},"format":{"copied_from_pointer":{"id":"0143112d-4765-4299-a34e-67b39245f7db","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117948,"last_edited_time":1689489393079,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"0143112d-4765-4299-a34e-67b39245f7db","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","version":3,"type":"page","properties":{"title":[["SocialDescription"]]},"format":{"copied_from_pointer":{"id":"018e155e-dfd7-41b6-a268-250c1a60a871","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117948,"last_edited_time":1689489395116,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"018e155e-dfd7-41b6-a268-250c1a60a871","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","version":3,"type":"page","properties":{"title":[["SocialLinks"]]},"format":{"copied_from_pointer":{"id":"1ac49c60-f358-499a-a402-35a96d6f207a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689489396079,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"1ac49c60-f358-499a-a402-35a96d6f207a","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","version":3,"type":"page","properties":{"title":[["Email"]]},"format":{"copied_from_pointer":{"id":"0ab46a9d-82cd-4382-ae62-ac0ec4098610","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689489396739,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"0ab46a9d-82cd-4382-ae62-ac0ec4098610","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1434d49f-0826-4dbe-874e-9fa160091306","version":32,"type":"page","properties":{"R`]x":[["🤩 Get your very own blog on the world wide web at "],["blogalog.net",[["a","http://blogalog.net"]]],["! 🤩"]],"title":[["Short"]]},"format":{"copied_from_pointer":{"id":"da7681bd-0ae0-416f-8e73-b6619a54fecd","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689489417870,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"da7681bd-0ae0-416f-8e73-b6619a54fecd","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","version":6,"type":"page","properties":{"nxhL":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"]]]],"title":[["ProfileImage"]]},"format":{"copied_from_pointer":{"id":"7266f521-d1b5-4338-adc9-71314dc6d7a5","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689491055882,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"7266f521-d1b5-4338-adc9-71314dc6d7a5","file_ids":["ead12507-6c50-409e-a6e6-1232ebfaa16c","f07768d9-e038-4943-aa73-fbaf70351066"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","version":16,"type":"page","properties":{"nxhL":[["blogalog-cover.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"]]]],"title":[["CoverImage"]]},"format":{"copied_from_pointer":{"id":"9c133353-da35-4979-a674-1ac14c6223a8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689491772383,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"9c133353-da35-4979-a674-1ac14c6223a8","file_ids":["3fd8ef55-4924-414d-b54d-28a6a769cbe7","eb2b9bef-7e83-4553-a064-42480bbdd506","8a8a08ea-cbd1-4d7a-8d99-8ebc6fa5fa91","9cfb2a72-12cd-4002-85de-c12e75862fcc"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","version":6,"type":"page","properties":{"nxhL":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"]]]],"title":[["IconImage"]]},"format":{"copied_from_pointer":{"id":"0753331c-57b7-4789-8e9b-6e8344ea5b49","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689491065283,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"0753331c-57b7-4789-8e9b-6e8344ea5b49","file_ids":["ead12507-6c50-409e-a6e6-1232ebfaa16c","eac514be-bdf2-439b-838d-204d308bd71d"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","version":11,"type":"page","properties":{"nxhL":[["blogalog-card.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"]]]],"title":[["CardImage"]]},"format":{"copied_from_pointer":{"id":"b7bd8b89-a8c5-47ea-8547-e719d5416f86","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689492918510,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"b7bd8b89-a8c5-47ea-8547-e719d5416f86","file_ids":["eb2b9bef-7e83-4553-a064-42480bbdd506","209f6957-47d5-4063-894f-b09b76d1d6fa"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","version":96,"type":"page","properties":{"R`]x":[["Blogalog 2023 | 🚧 Github link soon 🚧"]],"title":[["Footer"]]},"format":{"copied_from_pointer":{"id":"2438c884-b0ad-4e22-80f0-c9489612869a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689493154305,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"2438c884-b0ad-4e22-80f0-c9489612869a","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","version":26,"type":"page","properties":{"R`]x":[["https://blogalog.net"]],"title":[["URL"]]},"format":{"copied_from_pointer":{"id":"9cd1927b-5851-41d8-bfea-19dcb84d6386","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689491271840,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"9cd1927b-5851-41d8-bfea-19dcb84d6386","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","version":189,"type":"page","properties":{"{jf|":[["Main"]],"title":[["🚧 Web site under construction 🚧"]]},"content":["3d184599-7677-440d-8d57-52218ad0174e"],"format":{"copied_from_pointer":{"id":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689513191911,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","version":534,"type":"page","properties":{"BOur":[["blogalog-welcome"]],"R`]x":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"U:SC":[["14"]],"nnr{":[["Working Notes"]],"{jf|":[["Posts"]],"title":[["Hello blogalog.net"]]},"content":["808463d9-298c-42df-9a63-f6067de8bd95","6084282b-25ba-4da5-aced-40cae9b60f04","7db72322-c992-4304-81bc-682893595a86"],"format":{"page_full_width":true,"copied_from_pointer":{"id":"31345210-5a5f-459b-b958-2d1f6b848f57","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689513547157,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"31345210-5a5f-459b-b958-2d1f6b848f57","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","version":464,"type":"page","properties":{"U:SC":[["21"]],"{jf|":[["Main"]],"title":[["What the heck is blogalog"]]},"content":["29cb3108-2657-4bd0-8aa2-169466dd3e8b"],"format":{"copied_from_pointer":{"id":"524f58e7-bec1-45be-942b-a869d419ad3f","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689494785166,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"524f58e7-bec1-45be-942b-a869d419ad3f","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"wrap":true,"width":100,"visible":true,"property":"{jf|","name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},{"wrap":false,"width":222,"visible":true,"property":"title","name":"Name","type":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x","name":"Content","type":"text"},{"wrap":false,"width":100,"visible":true,"property":"nxhL","name":"Files","type":"file"},{"wrap":true,"width":100,"visible":true,"property":"CzHM","name":"Date","type":"date"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\","name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},{"wrap":false,"width":100,"visible":true,"property":"BOur","name":"Path","type":"text"},{"wrap":false,"width":100,"visible":true,"property":"SJm?","name":"Cover","type":"text"},{"wrap":false,"width":100,"visible":true,"property":"qH[K","name":"Link","type":"text"},{"wrap":false,"width":200,"visible":true,"property":"VZAs","name":"Version","type":"text"},{"wrap":false,"width":200,"visible":true,"property":"UdGI","name":"VersionNotes","type":"text"},{"wrap":false,"width":200,"visible":true,"property":"nnr{","name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},{"visible":true,"property":"xOrL"}],"collection":{"value":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","version":38,"name":[["blogalog homepage db"]],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"format":{"copied_from_pointer":{"id":"f7835bf1-9aa6-45f1-a34a-a2e39234dfcf","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"{jf|"}]},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"copied_from":"f7835bf1-9aa6-45f1-a34a-a2e39234dfcf","migrated":true,"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f","deleted_schema":{"xOrL":{"name":"Tags","type":"text"}}},"role":"reader"},"sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"views":[{"id":"185ad20d-c79a-4219-9534-d85c614a0ada","version":3,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|","name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},{"wrap":false,"width":222,"visible":true,"property":"title","name":"Name","type":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x","name":"Content","type":"text"},{"wrap":false,"width":100,"visible":true,"property":"nxhL","name":"Files","type":"file"},{"wrap":true,"width":100,"visible":true,"property":"CzHM","name":"Date","type":"date"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\","name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},{"wrap":false,"width":100,"visible":true,"property":"BOur","name":"Path","type":"text"},{"wrap":false,"width":100,"visible":true,"property":"SJm?","name":"Cover","type":"text"},{"wrap":false,"width":100,"visible":true,"property":"qH[K","name":"Link","type":"text"},{"wrap":false,"width":200,"visible":true,"property":"VZAs","name":"Version","type":"text"},{"wrap":false,"width":200,"visible":true,"property":"UdGI","name":"VersionNotes","type":"text"},{"wrap":false,"width":200,"visible":true,"property":"nnr{","name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"7db72322-c992-4304-81bc-682893595a86","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"c299b379-0b56-4221-a665-8401546223f6","version":2,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|"},{"wrap":false,"width":222,"visible":true,"property":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x"},{"wrap":false,"width":100,"visible":true,"property":"nxhL"},{"wrap":true,"width":100,"visible":true,"property":"CzHM"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\"},{"wrap":false,"width":100,"visible":true,"property":"BOur"},{"wrap":false,"width":100,"visible":true,"property":"SJm?"},{"wrap":false,"width":100,"visible":true,"property":"qH[K"},{"wrap":false,"width":200,"visible":true,"property":"VZAs"},{"wrap":false,"width":200,"visible":true,"property":"UdGI"},{"wrap":false,"width":200,"visible":true,"property":"nnr{"},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"ba601f1c-872a-4179-8bb5-bc80646b99bf","version":22,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":207,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zxl<"},{"width":313,"visible":true,"property":"CbSI"},{"width":369,"visible":true,"property":"KeGT"}],"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"Y>Aw"}]},"parent_id":"0f9f24f8-2570-4411-86a8-c10d9f788412","parent_table":"block","alive":true,"page_sort":["bc1b9d83-c82d-48e3-bed9-8e05ad55e942","5301eb0e-59ce-4eb1-b881-2ec7069a724a","8ad364a0-576b-4b77-b071-acce2760240b","07d1e163-d344-4407-b5d4-11a850a33160","d7bfdda6-5885-4763-b74c-a130c769b14a","65cad99e-a6af-43bd-9b53-fb9f3a62ad19","3abb17b2-5d4e-4a77-a2cc-736c73ef5932"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/92e7323e140f605f142d40da158dd8418567f3fcb8f070a85e36d1691627cc1b00004f5947417b33 b/.wrangler/state/v3/cache/default/blobs/92e7323e140f605f142d40da158dd8418567f3fcb8f070a85e36d1691627cc1b00004f5947417b33 new file mode 100644 index 0000000..fc7637e --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/92e7323e140f605f142d40da158dd8418567f3fcb8f070a85e36d1691627cc1b00004f5947417b33 @@ -0,0 +1 @@ +{"rows":[{"id":"1434d49f-0826-4dbe-874e-9fa160091306","format":{"copied_from_pointer":{"id":"da7681bd-0ae0-416f-8e73-b6619a54fecd","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"🤩 Get your very own blog on the world wide web at blogalog.net! 🤩","Name":"Short"},{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","format":{"copied_from_pointer":{"id":"c95aacf7-314c-49ef-8250-2e8f6611d083","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"@blogalog.net","Name":"TwitterHandle"},{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","format":{"copied_from_pointer":{"id":"9c133353-da35-4979-a674-1ac14c6223a8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog-cover.jpg","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F9cfb2a72-12cd-4002-85de-c12e75862fcc%2Fblogalog-cover.jpg?table=block&id=5c3a6ee0-fa82-4328-8800-7dc1e358f2ef&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"}],"Name":"CoverImage"},{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","format":{"copied_from_pointer":{"id":"b7bd8b89-a8c5-47ea-8547-e719d5416f86","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog-card.jpg","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F209f6957-47d5-4063-894f-b09b76d1d6fa%2Fblogalog-card.jpg?table=block&id=5c487e9d-ef99-4a74-bb29-f29182534ad8&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"}],"Name":"CardImage"},{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","format":{"copied_from_pointer":{"id":"9cd1927b-5851-41d8-bfea-19dcb84d6386","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"https://blogalog.net","Name":"URL"},{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","format":{"copied_from_pointer":{"id":"d6186c3e-3693-44a1-85dd-f2b4bd1f26c2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Blogalog","Name":"Author"},{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","format":{"copied_from_pointer":{"id":"7266f521-d1b5-4338-adc9-71314dc6d7a5","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog.png","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Ff07768d9-e038-4943-aa73-fbaf70351066%2Fblogalog.png?table=block&id=dbd6405c-4206-4939-a2ae-957dbfe985be&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"}],"Name":"ProfileImage"},{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","format":{"copied_from_pointer":{"id":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Type":["Main"],"Name":"🚧 Web site under construction 🚧"},{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","format":{"copied_from_pointer":{"id":"6d2e9a0d-aa1f-4c93-bbac-a945bf1b87fb","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Welcome to Blogalog.net, your very own blog on the world wide web","Name":"SiteTitle"},{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","format":{"copied_from_pointer":{"id":"524f58e7-bec1-45be-942b-a869d419ad3f","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Type":["Main"],"Name":"What the heck is blogalog"},{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","format":{"page_full_width":true,"copied_from_pointer":{"id":"31345210-5a5f-459b-b958-2d1f6b848f57","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Path":"blogalog-welcome","Content":"Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!","Categories":["Working Notes"],"Type":["Posts"],"Name":"Hello blogalog.net"},{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","format":{"copied_from_pointer":{"id":"04978cf2-dc87-4897-ac89-ecb5916328d8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"blogalog.net","Name":"username"},{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","format":{"copied_from_pointer":{"id":"0753331c-57b7-4789-8e9b-6e8344ea5b49","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Files":[{"name":"blogalog.png","url":"https://www.notion.so/image/https:%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2Feac514be-bdf2-439b-838d-204d308bd71d%2Fblogalog.png?table=block&id=890e1b05-339f-4f70-a21b-bbb24cee8968&cache=v2","rawUrl":"https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"}],"Name":"IconImage"},{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","format":{"copied_from_pointer":{"id":"1ac49c60-f358-499a-a402-35a96d6f207a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Name":"SocialLinks"},{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","format":{"copied_from_pointer":{"id":"0ab46a9d-82cd-4382-ae62-ac0ec4098610","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Name":"Email"},{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","format":{"copied_from_pointer":{"id":"2438c884-b0ad-4e22-80f0-c9489612869a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Blogalog 2023 | 🚧 Github link soon 🚧","Name":"Footer"},{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","format":{"copied_from_pointer":{"id":"0143112d-4765-4299-a34e-67b39245f7db","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Content":"Get your very own blog on the world wide web at blogalog.net! ","Name":"SiteDescription"},{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","format":{"copied_from_pointer":{"id":"018e155e-dfd7-41b6-a268-250c1a60a871","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"Name":"SocialDescription"}],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"name":"blogalog homepage db","tableArr":[{"value":{"id":"1434d49f-0826-4dbe-874e-9fa160091306","version":32,"type":"page","properties":{"R`]x":[["🤩 Get your very own blog on the world wide web at "],["blogalog.net",[["a","http://blogalog.net"]]],["! 🤩"]],"title":[["Short"]]},"format":{"copied_from_pointer":{"id":"da7681bd-0ae0-416f-8e73-b6619a54fecd","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689489417870,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"da7681bd-0ae0-416f-8e73-b6619a54fecd","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","version":27,"type":"page","properties":{"R`]x":[["@blogalog.net"]],"title":[["TwitterHandle"]]},"format":{"copied_from_pointer":{"id":"c95aacf7-314c-49ef-8250-2e8f6611d083","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689484183081,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"c95aacf7-314c-49ef-8250-2e8f6611d083","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","version":16,"type":"page","properties":{"nxhL":[["blogalog-cover.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"]]]],"title":[["CoverImage"]]},"format":{"copied_from_pointer":{"id":"9c133353-da35-4979-a674-1ac14c6223a8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689491772383,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"9c133353-da35-4979-a674-1ac14c6223a8","file_ids":["3fd8ef55-4924-414d-b54d-28a6a769cbe7","eb2b9bef-7e83-4553-a064-42480bbdd506","8a8a08ea-cbd1-4d7a-8d99-8ebc6fa5fa91","9cfb2a72-12cd-4002-85de-c12e75862fcc"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","version":11,"type":"page","properties":{"nxhL":[["blogalog-card.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"]]]],"title":[["CardImage"]]},"format":{"copied_from_pointer":{"id":"b7bd8b89-a8c5-47ea-8547-e719d5416f86","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689492918510,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"b7bd8b89-a8c5-47ea-8547-e719d5416f86","file_ids":["eb2b9bef-7e83-4553-a064-42480bbdd506","209f6957-47d5-4063-894f-b09b76d1d6fa"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","version":26,"type":"page","properties":{"R`]x":[["https://blogalog.net"]],"title":[["URL"]]},"format":{"copied_from_pointer":{"id":"9cd1927b-5851-41d8-bfea-19dcb84d6386","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689491271840,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"9cd1927b-5851-41d8-bfea-19dcb84d6386","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","version":57,"type":"page","properties":{"R`]x":[["Blogalog"]],"title":[["Author"]]},"format":{"copied_from_pointer":{"id":"d6186c3e-3693-44a1-85dd-f2b4bd1f26c2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689489293798,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"d6186c3e-3693-44a1-85dd-f2b4bd1f26c2","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","version":6,"type":"page","properties":{"nxhL":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"]]]],"title":[["ProfileImage"]]},"format":{"copied_from_pointer":{"id":"7266f521-d1b5-4338-adc9-71314dc6d7a5","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117951,"last_edited_time":1689491055882,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"7266f521-d1b5-4338-adc9-71314dc6d7a5","file_ids":["ead12507-6c50-409e-a6e6-1232ebfaa16c","f07768d9-e038-4943-aa73-fbaf70351066"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","version":189,"type":"page","properties":{"{jf|":[["Main"]],"title":[["🚧 Web site under construction 🚧"]]},"content":["3d184599-7677-440d-8d57-52218ad0174e"],"format":{"copied_from_pointer":{"id":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689513191911,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","version":187,"type":"page","properties":{"R`]x":[["Welcome to Blogalog.net, your very own blog on the world wide web"]],"title":[["SiteTitle"]]},"format":{"copied_from_pointer":{"id":"6d2e9a0d-aa1f-4c93-bbac-a945bf1b87fb","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689484211249,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"6d2e9a0d-aa1f-4c93-bbac-a945bf1b87fb","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","version":464,"type":"page","properties":{"U:SC":[["21"]],"{jf|":[["Main"]],"title":[["What the heck is blogalog"]]},"content":["29cb3108-2657-4bd0-8aa2-169466dd3e8b"],"format":{"copied_from_pointer":{"id":"524f58e7-bec1-45be-942b-a869d419ad3f","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689494785166,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"524f58e7-bec1-45be-942b-a869d419ad3f","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","version":534,"type":"page","properties":{"BOur":[["blogalog-welcome"]],"R`]x":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"U:SC":[["14"]],"nnr{":[["Working Notes"]],"{jf|":[["Posts"]],"title":[["Hello blogalog.net"]]},"content":["808463d9-298c-42df-9a63-f6067de8bd95","6084282b-25ba-4da5-aced-40cae9b60f04","7db72322-c992-4304-81bc-682893595a86"],"format":{"page_full_width":true,"copied_from_pointer":{"id":"31345210-5a5f-459b-b958-2d1f6b848f57","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689513547157,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"31345210-5a5f-459b-b958-2d1f6b848f57","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","version":34,"type":"page","properties":{"R`]x":[["blogalog.net"]],"xOrL":[["????"]],"title":[["username"]]},"format":{"copied_from_pointer":{"id":"04978cf2-dc87-4897-ac89-ecb5916328d8","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689509624693,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"04978cf2-dc87-4897-ac89-ecb5916328d8","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","version":6,"type":"page","properties":{"nxhL":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"]]]],"title":[["IconImage"]]},"format":{"copied_from_pointer":{"id":"0753331c-57b7-4789-8e9b-6e8344ea5b49","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689491065283,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"0753331c-57b7-4789-8e9b-6e8344ea5b49","file_ids":["ead12507-6c50-409e-a6e6-1232ebfaa16c","eac514be-bdf2-439b-838d-204d308bd71d"],"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","version":3,"type":"page","properties":{"title":[["SocialLinks"]]},"format":{"copied_from_pointer":{"id":"1ac49c60-f358-499a-a402-35a96d6f207a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689489396079,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"1ac49c60-f358-499a-a402-35a96d6f207a","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","version":3,"type":"page","properties":{"title":[["Email"]]},"format":{"copied_from_pointer":{"id":"0ab46a9d-82cd-4382-ae62-ac0ec4098610","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689489396739,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"0ab46a9d-82cd-4382-ae62-ac0ec4098610","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","version":96,"type":"page","properties":{"R`]x":[["Blogalog 2023 | 🚧 Github link soon 🚧"]],"title":[["Footer"]]},"format":{"copied_from_pointer":{"id":"2438c884-b0ad-4e22-80f0-c9489612869a","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117949,"last_edited_time":1689493154305,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"2438c884-b0ad-4e22-80f0-c9489612869a","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","version":212,"type":"page","properties":{"R`]x":[["Get your very own blog on the world wide web at blogalog.net! "]],"title":[["SiteDescription"]]},"format":{"copied_from_pointer":{"id":"0143112d-4765-4299-a34e-67b39245f7db","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117948,"last_edited_time":1689489393079,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"0143112d-4765-4299-a34e-67b39245f7db","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","version":3,"type":"page","properties":{"title":[["SocialDescription"]]},"format":{"copied_from_pointer":{"id":"018e155e-dfd7-41b6-a268-250c1a60a871","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117948,"last_edited_time":1689489395116,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"018e155e-dfd7-41b6-a268-250c1a60a871","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":276,"visible":true,"property":"title","name":"Name","type":"title"},{"visible":true,"property":"@I]j"}],"collection":{"value":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","version":38,"name":[["blogalog homepage db"]],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"format":{"copied_from_pointer":{"id":"f7835bf1-9aa6-45f1-a34a-a2e39234dfcf","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"{jf|"}]},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"copied_from":"f7835bf1-9aa6-45f1-a34a-a2e39234dfcf","migrated":true,"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f","deleted_schema":{"xOrL":{"name":"Tags","type":"text"}}},"role":"reader"},"sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"views":[{"id":"08848ed7-c04f-4640-a04c-749d00587f82","version":4,"type":"table","name":"","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title","name":"Name","type":"title"},{"visible":true,"property":"@I]j"}],"collection_pointer":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"6084282b-25ba-4da5-aced-40cae9b60f04","parent_table":"block","alive":true,"page_sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"c299b379-0b56-4221-a665-8401546223f6","version":2,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|"},{"wrap":false,"width":222,"visible":true,"property":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x"},{"wrap":false,"width":100,"visible":true,"property":"nxhL"},{"wrap":true,"width":100,"visible":true,"property":"CzHM"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\"},{"wrap":false,"width":100,"visible":true,"property":"BOur"},{"wrap":false,"width":100,"visible":true,"property":"SJm?"},{"wrap":false,"width":100,"visible":true,"property":"qH[K"},{"wrap":false,"width":200,"visible":true,"property":"VZAs"},{"wrap":false,"width":200,"visible":true,"property":"UdGI"},{"wrap":false,"width":200,"visible":true,"property":"nnr{"},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"3ecce580-8344-42b7-96c5-5b9de945a31d","version":1,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title"},{"visible":true,"property":"@I]j"}],"collection_pointer":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"808463d9-298c-42df-9a63-f6067de8bd95","parent_table":"block","alive":true,"page_sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"ba601f1c-872a-4179-8bb5-bc80646b99bf","version":22,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":207,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zxl<"},{"width":313,"visible":true,"property":"CbSI"},{"width":369,"visible":true,"property":"KeGT"}],"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"Y>Aw"}]},"parent_id":"0f9f24f8-2570-4411-86a8-c10d9f788412","parent_table":"block","alive":true,"page_sort":["bc1b9d83-c82d-48e3-bed9-8e05ad55e942","5301eb0e-59ce-4eb1-b881-2ec7069a724a","8ad364a0-576b-4b77-b071-acce2760240b","07d1e163-d344-4407-b5d4-11a850a33160","d7bfdda6-5885-4763-b74c-a130c769b14a","65cad99e-a6af-43bd-9b53-fb9f3a62ad19","3abb17b2-5d4e-4a77-a2cc-736c73ef5932"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/9660918d11d461a9b7b0d03b6b76e8df268d61837de2712d7c40305577fd5e4400023b96aafcbde4 b/.wrangler/state/v3/cache/default/blobs/9660918d11d461a9b7b0d03b6b76e8df268d61837de2712d7c40305577fd5e4400023b96aafcbde4 new file mode 100644 index 0000000..7864438 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/9660918d11d461a9b7b0d03b6b76e8df268d61837de2712d7c40305577fd5e4400023b96aafcbde4 @@ -0,0 +1 @@ +{"rows":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"Quadram Institute, UK","Speaker":"Instructor: Evelien Adriaenssens","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"Viromics: Viral community analysis with metagenomics"},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"TAILOR Labs, Baylor College of Medicine","Speaker":"Instructor: Justin Clark ","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["0cd38da4-0919-4b69-bb95-3d9a6c8ae352"],"Event":"Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"BBQ Welcome lunch at Evergreen"},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Speaker":"Instructor: Ramy Aziz & Rebecca Wattam","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["c90b69ff-e994-403b-b885-59871db7734c"],"Event":"TBA (Genomics/PATRIC)"},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Affiliation":"Phages for Global Health","Speaker":"Instructor: Tobi Nagel & Fran Hodges","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["72bc1da3-cc5a-4293-8f3c-a8de212cf1ea"],"Event":"TBA (Biobanking)"},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"},"Session":"Pre-conference workshop","Time":"6:30 PM - 8:30 PM","Event":"(TBC) Workshop Extension"},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Poster Session","Time":"6:00 PM - 9:00 PM","Event":"Informal Poster Session "},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Social/Fun!","Time":"6:00 PM - 9:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"},"Location":"Purce Hall","Session":"Session 1: Plenary talks","Event":"Session 1: Plenary talks"},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":"Monday","Length of talk":["15 min"],"Session":"Session 1: Plenary talks","Time":"8:30 AM - 8:45 AM","Event":"Phagebiotics Welcome!"},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Martin Loessner","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"8:45 AM - 9:05 AM","Name of speaker":["be36f174-7518-499c-aa4c-4fe8c08ecfd1"],"Event":"Bacteriophages by design: tiny killers and smart detectives"},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Quadram Institute Bioscience","Speaker":"Evelien Adriaenssens","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"9:05 AM - 9:25 AM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"What’s going on with phage taxonomy and is it really necessary?"},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"},"Speaker":"Chair: Teagan Brown & TBA","Location":"Purce Hall","Session":"Session 2: Ecology & Informatics I","Event":"Session 2: Ecology & Informatics I"},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Lawrence Livermore National Laboratory, Livermore, CA","Speaker":"Gary Trubl","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:25 AM - 9:45 AM","Name of speaker":["cd337cdc-ca59-4f9e-a083-1b1f68fd180b"],"Event":"Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Harvard Medical School","Speaker":"Sian Owen","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:45 AM - 10:05 AM","Name of speaker":["3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c"],"Event":"Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Location":"CAB","Session":"Session 2: Ecology & Informatics I","Time":"10:05 AM - 10:25 AM","Event":"Break"},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Globe Institute, University of Copenhagen, Denmark","Speaker":"Thomas Sicheritz-Pontén","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"10:25 AM - 10:45 AM","Name of speaker":["b06e9b76-ff8a-432b-86e7-029a793897b3"],"Event":"Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University at Buffalo","Speaker":"Kathryn Kauffman","Session":"Session 2: Ecology & Informatics I","Time":"10:45 AM - 11:05 AM","Name of speaker":["49b79643-2347-4528-a497-8f4ed336c33a"],"Event":"Uncovering the roles of phages in the oral microbiome"},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jan Zheng","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:05 AM - 11:25 AM","Name of speaker":["5649ff80-cad7-451f-9b55-d297f1563090"],"Event":"Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phase Genomics, Inc.","Speaker":"Benjamin Auch","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:25 AM - 11:40 PM","Name of speaker":["93d533c0-875c-42c2-9a85-79199379e203"],"Event":"Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Genetics, Stanford University, Stanford, CA, USA","Speaker":"Yishay Pinto","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:40 AM - 11:55 AM","Name of speaker":["8df4db71-3c5c-40e0-9f4e-4671e81dbc71"],"Event":"Phage-inclusive profiling of human gut microbiomes with Phanta"},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":"Monday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 3: Phage defense","Event":"Session 3: Phage defense"},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University of Otago, New Zealand","Speaker":"Peter Fineran","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:00 PM - 1:20 PM","Name of speaker":["ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef"],"Event":"Anti-CRISPR strategies and their regulation"},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"School of Biological Sciences, University of Southampton, United Kingdom","Speaker":"Franklin Nobrega","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:20 PM - 1:40 PM","Name of speaker":["2a748a12-8f17-4a75-80e4-6c5e5752effb"],"Event":"Co-occurrence and synergism of anti-phage defence systems"},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Biology, McMaster University, Hamilton, Canada","Speaker":"Leah Sather","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:40 PM - 1:55 PM","Name of speaker":["0210e1bb-0c5e-4db7-9169-44a85b61799c"],"Event":"Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"School of Biological Sciences","Speaker":"Thomas Todeschini","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:55 PM - 2:10 PM","Name of speaker":["fa7afdac-7554-4588-91c2-b3543ed1f35d"],"Event":"Kiwa modulates host nuclease activity for anti-viral defense"},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Xu Peng","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"2:10 PM - 2:25 PM","Name of speaker":["3a70c9b0-883f-411e-aeff-63e1b91c6175"],"Event":"How archaeal viruses inhibit host CRISPR-Cas immunity"},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Time":"2:25 PM - 2:45 PM","Event":"Break"},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"},"Speaker":"Chair: Sandra Morales & TBA","Location":"Purce Hall","Session":"Session 4: Phage therapy I","Event":"Session 4: Phage therapy I"},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD","Speaker":"Scott Stibitz","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"2:45 PM - 3:05 PM","Name of speaker":["55bdd695-7c84-4da3-a08d-6b35cc79895b"],"Event":"Regulation of Phage Therapy by the FDA: CMC topics"},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phage Consulting, Sydney, New South Wales, Australia","Speaker":"Sandra Morales","Session":"Session 4: Phage therapy I","Time":"3:05 PM - 3:20 PM","Name of speaker":["ab627c93-11a9-4ef0-8deb-fa80f49f4a80"],"Event":"TBA (Phage therapy overview)"},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Queen Astrid Military Hospital, Belgium","Speaker":"Jean-Paul Pirnay","Session":"Session 4: Phage therapy I","Time":"3:20 PM - 3:40 PM","Name of speaker":["f3401535-46c5-44ba-852a-cf31eaaf7818"],"Event":"TBA (Phage therapy experience in Belgium)"},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Yale University, USA","Speaker":"Benjamin Chan","Session":"Session 4: Phage therapy I","Time":"3:40 PM - 3:55 PM","Name of speaker":["8a9e19e8-f881-437b-8c9e-594d07a25d95"],"Event":"TBA (Phage therapy experience at Yale)"},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Austen Terwilliger","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"3:55 PM - 4:15 PM","Name of speaker":["71c70747-235c-4e79-a22c-8764e7076ccd"],"Event":"A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":"Monday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":"Monday","Session":"Special Session","Time":"5:30 PM & 6:00 PM buses","Event":"Head to bus depot and go downtown to movie theater"},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"},"Speaker":"Panel: Martha Clokie, Diane Shader Smith, & more TBA. ","Location":"Downtown Olympia","Session":"Special Session","Time":"7:00 PM - 9:30 PM","Event":"Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":"Monday","Session":"Special Session","Time":"9:30 PM, 10:15 PM, 11 PM buses","Event":"Buses back to Evergreen"},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"},"Speaker":"Chair: Gina Suh & TBA","Location":"Purce Hall","Session":"Session 5: Phage therapy II","Event":"Session 5: Phage therapy II"},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":"Tuesday","Length of talk":["10 min."],"Session":"Session 5: Phage therapy II","Time":"8:30 AM - 8:40 AM","Event":"Introduction to keynote"},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":"Tuesday","Length of talk":["60 min."],"Speaker":"[Keynote] Diane Shader Smith","Session":"Session 5: Phage therapy II","Time":"8:40 AM - 9:40 AM","Name of speaker":["c6f82a66-2bb7-4431-8cb8-6ded07aa301c"],"Event":"Keynote TBA (Phage therapy patient/parent experience)"},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jessica Sacher","Accepted in airtable":true,"Session":"Session 5: Phage therapy II","Time":"9:40 AM - 10:00 AM","Name of speaker":["745163f6-a397-4a4c-b4cb-154e2ef458a9"],"Event":"Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"University of Toronto","Speaker":"Greg German","Session":"Session 5: Phage therapy II","Time":"10:00 AM - 10:20 AM","Name of speaker":["099bc17c-8582-473b-97c2-1b14f1c8a444"],"Event":"TBA (Phage therapy experience in Canada)"},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":"Tuesday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":"Tuesday","Length of talk":["15 min"],"Speaker":"Talk - Chris Shafer ","Accepted in airtable":false,"Session":"Session 5: Phage therapy II","Time":"10:40 AM - 10:55 AM","Name of speaker":["cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7"],"Event":"TBA (Patient experience)"},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":"Tuesday","Length of talk":["5 min"],"Session":"Session 5: Phage therapy II","Time":"10:55 AM - 11:00 AM","Event":"Introduction to keynote"},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":"Tuesday","Length of talk":["60 min."],"Affiliation":"IPATH, UCSD","Speaker":"[Keynote] Steffanie Strathdee","Session":"Session 5: Phage therapy II","Time":"11:00 AM - 12:00 PM","Name of speaker":["db83cbad-3504-4120-8eb2-a9e9f588fb29"],"Event":"TBA (Phage therapy experience in San Diego)"},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 6: Understanding & improving phage therapy","Event":"Session 6: Understanding & improving phage therapy"},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"IPATH, UCSD","Speaker":"Katrine Whiteson","Session":"Session 6: Understanding & improving phage therapy","Time":"1:00 PM - 1:20 PM","Name of speaker":["9dce44b9-3367-4c00-91b7-147e7554c75c"],"Event":"Better together: Phage cocktails constrain the growth of Enterococcus"},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium","Speaker":"Sabrina Green","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:20 PM - 1:40 PM","Name of speaker":["dddc50d1-cf21-42a5-99b9-b265b09b51d2"],"Event":"Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD","Speaker":"Kevin Burke","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:40 PM - 1:55 PM","Name of speaker":["e2672fc8-3000-4de3-b372-baa29bff31cb"],"Event":"Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, CA 92182, USA","Speaker":"Tiffany Luong","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:55 PM - 2:10 PM","Name of speaker":["70862f59-9b2b-498e-a110-eca0fa064e94"],"Event":"Lost in circulation: Improving the in vivo activity of phage cocktails"},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany","Speaker":"Magdalena Unterer","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:10 PM - 2:25 PM","Name of speaker":["9e27a8ec-a3b8-4167-9217-d7f4c8bc9008"],"Event":"Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Rime Bioinformatics SAS, Palaiseau, France","Speaker":"Antoine Culot","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:25 PM - 2:40 PM ","Name of speaker":["fc603774-7a1b-4ee5-987e-37afce4b85bd"],"Event":"Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Jiemin Du","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:40 PM - 2:55 PM","Name of speaker":["e757271b-ff33-407a-89b8-8cd37f0d9f7f"],"Event":"Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":"Tuesday","Length of talk":["20 min"],"Time":"2:55 PM - 3:15 PM","Event":"Break"},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD","Speaker":"Susan Lehman","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:15 PM - 3:35 PM","Name of speaker":["e868601c-0a86-4534-862a-feea152760d9"],"Event":"A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA","Speaker":"Katarzyna Danis-Włodarczyk","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:35 PM - 3:50 PM","Name of speaker":["46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4"],"Event":"Topical phage treatment of a P. aeruginosa mouse wound-infection model"},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA","Speaker":"Qingquan (Kevin) Chen","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:50 PM - 4:05 PM","Name of speaker":["be03672d-3029-461b-81ca-9fa90eb3248b"],"Event":"Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland","Speaker":"Gregory Resch","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:05 PM - 4:25 PM","Name of speaker":["e9bd9655-a26e-48a5-9afb-16ba0082c88f"],"Event":"Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA","Speaker":"Paul Bollyky","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:25 PM - 4:45 PM","Name of speaker":["99674cc4-e81f-45a2-912b-50cefd63c4e9"],"Event":"Circulating bacteriophages can identify bacterial pathogens in human infections"},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":"Tuesday","Session":"Poster Session","Time":"6:00 PM - 7:00 PM","Event":"Informal Poster session "},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":"Tuesday","Length of talk":["120 min"],"Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"},"Speaker":"Evergreen Chronology of Inspiration Panel","Location":"Purce Hall","Session":"Special Session","Time":"7:00 PM - 9:00 PM","Event":"TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":"Tuesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Celebration/Dancing"},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 7: Phage and the immune system","Event":"Session 7: Phage and the immune system"},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, USA","Speaker":"Dwayne Roach","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:30 AM - 8:50 AM","Name of speaker":["47154f21-f3d7-4f67-bc63-044dcd457522"],"Event":"The Viral Immunogenicity of Clinically Relevant Bacteriophages"},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland","Speaker":"Krystyna Dabrowska","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:50 AM - 9:10 AM","Name of speaker":["d043af99-31e1-4899-b2d6-e7aebfb09289"],"Event":"PhageScan: identification of major phage epitopes that are immunogenic for humans"},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Philip Lauman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:10 AM - 9:25 AM","Name of speaker":["a5125779-3bd8-4770-9ddd-a7de0bfec554"],"Event":"O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"College of Life and Environmental Sciences, University of Exeter","Speaker":"Meaghan Castledine","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:25 AM - 9:40 AM","Name of speaker":["e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0"],"Event":"Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Léa Zinsli","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:40 AM - 9:55 AM","Name of speaker":["cc428e33-a0a8-427d-a52c-e16bf7a5b030"],"Event":"Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA","Speaker":"Thomas Smytheman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:55 AM - 10:15 AM","Name of speaker":["8fdd1c46-143b-40aa-8887-ff385fcbff06"],"Event":"Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":"Wednesday","Length of talk":["20 min"],"Time":"10:15 AM - 10:35 AM","Event":"Break"},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 8: Molecular phage biology I","Event":"Session 8: Molecular phage biology I"},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA","Speaker":"Vivek Mutalik","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:35 AM - 10:55 AM","Name of speaker":["26635071-15db-4630-aed0-709d6a5af51e"],"Event":"Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Enea Maffei","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:55 AM - 11:10 AM","Name of speaker":["da86622d-2762-4d2d-8b1d-c500e44dd712"],"Event":"Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Carmen Gu Liu","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:10 AM - 11:25 AM","Name of speaker":["1a4a441d-ee6b-45c9-8b84-0c60dd412cbe"],"Event":"Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany","Speaker":"Jordan Romeyer Dherbey","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:25 AM - 11:40 AM","Name of speaker":["b3d03715-7585-46a6-b31d-98440b9c5a86"],"Event":"Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":"Wednesday","Length of talk":["10 min."],"Affiliation":"ICMR- National Institute of Cholera and Enteric Diseases","Speaker":"Bani Mallick","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:40 AM - 11:50 AM","Name of speaker":["909c2508-9568-4ba0-85b8-10247ee7f7fc"],"Event":"Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":"Wednesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"},"Speaker":"Chair: Michael Koeris","Location":"Purce Hall","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Event":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":"Wednesday","Length of talk":["20 min"],"Speaker":"Michael Koeris","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:00 PM - 1:20 PM","Name of speaker":["a3dd1393-507a-4b0f-890f-c2dae8a37e70"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"PhagePro, Inc","Speaker":"Minmin Yen","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:20 PM - 1:35 PM","Name of speaker":["a7b77d41-ff9a-4650-9e3f-d4d70015a202"],"Event":"Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Locus Biosciences","Speaker":"Nick Conley","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:35 PM - 1:50 PM","Name of speaker":["3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Dominic Sauvageau","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:50 PM - 2:05 PM","Name of speaker":["13ce51a7-4f96-4116-b462-45503a847bec"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"},"Session":"Social/Fun!","Time":"2:05 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":"Wednesday","Location":"TBA","Session":"Food!","Time":"5:00 PM - 7:00 PM","Event":"Dinner (TBA)"},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"},"Session":"Poster Session","Time":"7:00 PM - 9:00 PM","Event":"Formal Poster Session/Mixer I"},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"},"Session":"Social/Fun!","Time":"6:30 PM - ?","Event":"Phage sculpture building"},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Dancing "},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 10: Ecology & Informatics II","Event":"Session 10: Ecology & Informatics II"},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":"Thursday","Length of talk":["20 min"],"Speaker":"Ryan Cook","Session":"Session 10: Ecology & Informatics II","Time":"8:30 AM - 8:50 AM","Name of speaker":["3382a9f0-80c5-473c-9528-80821b7dd0f6"],"Event":"TBA (Phage ecology)"},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Leicester","Speaker":"Sophie Harrison","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"8:50 AM - 9:05 AM","Name of speaker":["c69f71c3-ecf0-439e-af81-b6429d26e631"],"Event":"Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology and Immunology, McGill University, Montreal, Canada","Speaker":"Michael Shamash","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"9:05 AM - 9:20 AM","Name of speaker":["6bb08bf3-d20b-403c-8138-58a25cb2c6d0"],"Event":"Gut virome colonization dynamics in a humanized mouse model of early life development"},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":"Thursday","Length of talk":["60 min."],"Speaker":"[Keynote] Martha Clokie","Accepted in airtable":false,"Session":"Session 10: Ecology & Informatics II","Time":"9:20 AM - 10:20 AM","Name of speaker":["26ff67d0-686a-4347-a52e-f0c6a08d52e3"],"Event":"TBA"},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":"Thursday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"},"Speaker":"Chair: Hany Anany & TBA","Location":"Purce Hall","Session":"Session 11: Phage in food and agriculture","Event":"Session 11: Phage in food and agriculture"},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"KU Leuven, Belgium","Speaker":"Jeroen Wagemans","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"10:40 AM - 11:00 AM","Name of speaker":["25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202"],"Event":"Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Research Scientist","Speaker":"Hany Anany","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:00 AM - 11:20 AM","Name of speaker":["99692a27-5cb0-46c6-b341-74f5d6701ad2"],"Event":"Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Department of Food Science, University of Tennessee, Knoxville, TN","Speaker":"Thomas Denes","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:20 AM - 11:40 AM","Name of speaker":["5d4dea8f-f420-4179-9773-78fcd7929c63"],"Event":"Overcoming hurdles for phage applications in food safety with directed evolution"},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"SCIPHAGE","Speaker":"Viviana Clavijo","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:40 AM - 11:55 AM","Name of speaker":["81f9417a-d86c-4e6b-b125-481ad425ca35"],"Event":"SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":"Thursday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 12: Molecular phage biology II","Event":"Session 12: Molecular phage biology II"},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Max Planck Institute for Terrestrial Microbiology, Marburg, Germany","Speaker":"Katharina Höfer","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:00 PM - 1:20 PM","Name of speaker":["f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae"],"Event":"Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Janine Bowring","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:20 PM - 1:35 PM","Name of speaker":["03894d69-8250-477b-bdb9-279325e1db10"],"Event":"Genomic mobilisation by rRNA operon recombination – another route of phage transduction"},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"School of Life Sciences, University of Warwick, Coventry, UK","Speaker":"Rebecca Quinn","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:35 PM - 1:50 PM","Name of speaker":["163cfe1e-0c11-4f53-ae42-d91dd3a1d516"],"Event":"Phage tRNAs Subvert Host Resistance"},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia","Speaker":"Valentina Andrea Floccari","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:50 PM - 2:05 PM","Name of speaker":["24959fbb-214c-49cb-aac7-573850ffcc34"],"Event":"Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Biology, University of Idaho","Speaker":"Tracey Peters","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:05 PM - 2:20 PM","Name of speaker":["7d737977-f461-42e3-b38d-44612cf790c4"],"Event":"Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Department of Medicine, McMaster University","Speaker":"Gayatri Nair","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:20 PM - 2:30 PM","Name of speaker":["f90b3af0-02da-4596-8063-5fb6fbbb1b59"],"Event":"Biasing Bacteriophage Behaviour"},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada","Speaker":"Jieting Lin","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:30 PM - 2:40 PM","Name of speaker":["a61583c9-528b-4adc-962e-e6a287b2c676"],"Event":"Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":"Thursday","Length of talk":["15 min"],"Session":"Session 12: Molecular phage biology II","Time":"2:40 PM - 2:55 PM","Event":"Closing Remarks / Future Meeting"},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Poster Session","Time":"3 PM - 5:00 PM","Event":"Formal Poster Session/Mixer II "},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Social/Fun!","Time":"3 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt: Hike to beach"},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":"Thursday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"},"Location":"Olympia","Session":"Social/Fun!","Time":"5 PM - 9:00 PM","Event":"Adventure out into Olympia for dinner and an evening on the water. "},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":"Friday","Date & Time":{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"},"Session":"Social/Fun!","Event":"Mt. Rainier hike!"}],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["Quadram Institute, UK"]],"LQJ@":[["Instructor: Evelien Adriaenssens"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Viromics: Viral community analysis with metagenomics"]]},"created_time":1687798566572,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","version":492,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["TAILOR Labs, Baylor College of Medicine"]],"LQJ@":[["Instructor: Justin Clark "]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},"created_time":1687798566573,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"320fbd52-2c2b-475f-b2da-07864683da29","version":285,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:30 - 1:30 PM"]],"title":[["BBQ Welcome lunch at Evergreen"]]},"created_time":1687803510356,"last_edited_time":1689391195918,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","version":391,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"LQJ@":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Genomics/PATRIC)"]]},"created_time":1687798574821,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","version":423,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"B:Eq":[["Phages for Global Health"]],"LQJ@":[["Instructor: Tobi Nagel & Fran Hodges"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Biobanking)"]]},"created_time":1687798577371,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","version":188,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687799240915,"last_edited_time":1689391199074,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","version":121,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["6:30 PM - 8:30 PM"]],"title":[["(TBC) Workshop Extension"]]},"created_time":1689380004207,"last_edited_time":1689391180080,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","version":441,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:30 PM"]],"title":[["Informal Poster Session "]]},"created_time":1687803348235,"last_edited_time":1689390202574,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","version":153,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1687803491538,"last_edited_time":1689390204139,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","version":155,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 1: Plenary talks"]],"title":[["Session 1: Plenary talks"]]},"created_time":1689384912122,"last_edited_time":1689390237972,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","version":238,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:30 AM - 8:45 AM"]],"~Dke":[["8:30 AM"]],"title":[["Phagebiotics Welcome!"]]},"created_time":1687799401390,"last_edited_time":1689390207153,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9914254b-f117-427d-a18e-942c13978d1a","version":281,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Martin Loessner"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:45 AM - 9:05 AM"]],"zo?d":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:45 AM"]],"title":[["Bacteriophages by design: tiny killers and smart detectives"]]},"created_time":1687799405505,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","version":253,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Quadram Institute Bioscience"]],"LQJ@":[["Evelien Adriaenssens"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["9:05 AM - 9:25 AM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1015"]],"title":[["What’s going on with phage taxonomy and is it really necessary?"]]},"created_time":1688512415031,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","version":165,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"LQJ@":[["Chair: Teagan Brown & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"title":[["Session 2: Ecology & Informatics I"]]},"created_time":1689385218335,"last_edited_time":1689390232321,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","version":200,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"LQJ@":[["Gary Trubl"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:25 AM - 9:45 AM"]],"zo?d":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1035"]],"title":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},"created_time":1687825729361,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","version":178,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Harvard Medical School"]],"LQJ@":[["Sian Owen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:45 AM - 10:05 AM"]],"zo?d":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1055"]],"title":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},"created_time":1689054446060,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","version":233,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"Mf`v":[["CAB"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:05 AM - 10:25 AM"]],"~Dke":[["10:05 AM"]],"title":[["Break"]]},"created_time":1687799413680,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","version":301,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Globe Institute, University of Copenhagen, Denmark"]],"LQJ@":[["Thomas Sicheritz-Pontén"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:25 AM - 10:45 AM"]],"zo?d":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},"created_time":1687799423553,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","version":323,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University at Buffalo"]],"LQJ@":[["Kathryn Kauffman"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:45 AM - 11:05 AM"]],"zo?d":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["2"]],"title":[["Uncovering the roles of phages in the oral microbiome"]]},"created_time":1688512413646,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","version":324,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jan Zheng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:05 AM - 11:25 AM"]],"zo?d":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},"created_time":1688512659324,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","version":340,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phase Genomics, Inc."]],"LQJ@":[["Benjamin Auch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:25 AM - 11:40 PM"]],"zo?d":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1145"]],"title":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},"created_time":1688087779835,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","version":397,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Yishay Pinto"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1130"]],"title":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},"created_time":1688087778316,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"43b54100-7643-4867-8231-1727a947cd4d","version":169,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12-1"]],"title":[["Lunch"]]},"created_time":1687799445188,"last_edited_time":1689391206119,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","version":35,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 3: Phage defense"]],"title":[["Session 3: Phage defense"]]},"created_time":1689385244780,"last_edited_time":1689390383379,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","version":311,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Otago, New Zealand"]],"LQJ@":[["Peter Fineran"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1025"]],"title":[["Anti-CRISPR strategies and their regulation"]]},"created_time":1688509096732,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","version":310,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"LQJ@":[["Franklin Nobrega"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1045"]],"title":[["Co-occurrence and synergism of anti-phage defence systems"]]},"created_time":1687799437045,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","version":242,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, McMaster University, Hamilton, Canada"]],"LQJ@":[["Leah Sather"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1105"]],"title":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},"created_time":1687799411405,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","version":320,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Biological Sciences"]],"LQJ@":[["Thomas Todeschini"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1120"]],"title":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},"created_time":1687799425372,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","version":295,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Xu Peng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1135-1150"]],"title":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},"created_time":1687799439413,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","version":235,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"pjT:":[["2:25 PM - 2:45 PM"]],"~Dke":[["2:40"]],"title":[["Break"]]},"created_time":1687803199153,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","version":69,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"LQJ@":[["Chair: Sandra Morales & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 4: Phage therapy I"]],"title":[["Session 4: Phage therapy I"]]},"created_time":1689385265953,"last_edited_time":1689390405405,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","version":244,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"LQJ@":[["Scott Stibitz"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["2:45 PM - 3:05 PM"]],"zo?d":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3"]],"title":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},"created_time":1687804154218,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","version":408,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phage Consulting, Sydney, New South Wales, Australia"]],"LQJ@":[["Sandra Morales"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:05 PM - 3:20 PM"]],"zo?d":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["TBA (Phage therapy overview)"]]},"created_time":1689054379387,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","version":347,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Queen Astrid Military Hospital, Belgium"]],"LQJ@":[["Jean-Paul Pirnay"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:20 PM - 3:40 PM"]],"zo?d":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["340"]],"title":[["TBA (Phage therapy experience in Belgium)"]]},"created_time":1687825469236,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","version":304,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Yale University, USA"]],"LQJ@":[["Benjamin Chan"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:40 PM - 3:55 PM"]],"zo?d":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["4"]],"title":[["TBA (Phage therapy experience at Yale)"]]},"created_time":1688870910296,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","version":339,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Austen Terwilliger"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:55 PM - 4:15 PM"]],"zo?d":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["420-440"]],"title":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},"created_time":1687804152062,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","version":177,"type":"page","properties":{";:c\\":[["Monday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5-6"]],"title":[["Dinner"]]},"created_time":1687804161297,"last_edited_time":1689391211332,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","version":257,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["5:30 PM & 6:00 PM buses"]],"~Dke":[["6:10 PM - 7:00 PM"]],"title":[["Head to bus depot and go downtown to movie theater"]]},"created_time":1687804165074,"last_edited_time":1689391217591,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","version":542,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"LQJ@":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Mf`v":[["Downtown Olympia"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:30 PM"]],"~Dke":[["7:00 PM - 9:30 PM"]],"title":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},"created_time":1687804327137,"last_edited_time":1689390602372,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","version":135,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["9:30 PM, 10:15 PM, 11 PM buses"]],"title":[["Buses back to Evergreen"]]},"created_time":1689385721108,"last_edited_time":1689391222881,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","version":77,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"LQJ@":[["Chair: Gina Suh & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 5: Phage therapy II"]],"title":[["Session 5: Phage therapy II"]]},"created_time":1689385327067,"last_edited_time":1689390510980,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","version":158,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["10 min."]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:30 AM - 8:40 AM"]],"~Dke":[["8:30 AM"]],"title":[["Introduction to keynote"]]},"created_time":1687804872919,"last_edited_time":1689390517374,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","version":418,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Diane Shader Smith"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:40 AM - 9:40 AM"]],"zo?d":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:40"]],"title":[["Keynote TBA (Phage therapy patient/parent experience)"]]},"created_time":1687804875083,"last_edited_time":1689390533282,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","version":277,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jessica Sacher"]],"PvYj":[["Yes"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["9:40 AM - 10:00 AM"]],"zo?d":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940"]],"title":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},"created_time":1687803978208,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","version":339,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Toronto"]],"LQJ@":[["Greg German"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:00 AM - 10:20 AM"]],"zo?d":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["10"]],"title":[["TBA (Phage therapy experience in Canada)"]]},"created_time":1688514223660,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","version":90,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10:20 AM"]],"title":[["Break"]]},"created_time":1688510819582,"last_edited_time":1689390856637,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","version":440,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"LQJ@":[["Talk - Chris Shafer "]],"PvYj":[["No"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:40 AM - 10:55 AM"]],"zo?d":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1040"]],"title":[["TBA (Patient experience)"]]},"created_time":1688870878668,"last_edited_time":1689390547176,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","version":272,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["5 min"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:55 AM - 11:00 AM"]],"~Dke":[["1055"]],"title":[["Introduction to keynote"]]},"created_time":1687804891380,"last_edited_time":1689390854168,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","version":295,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["[Keynote] Steffanie Strathdee"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["11:00 AM - 12:00 PM"]],"zo?d":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["11am"]],"title":[["TBA (Phage therapy experience in San Diego)"]]},"created_time":1687824627233,"last_edited_time":1689390550195,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","version":96,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687824632680,"last_edited_time":1689391227320,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","version":41,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"title":[["Session 6: Understanding & improving phage therapy"]]},"created_time":1689385344622,"last_edited_time":1689390887337,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3918b591-a398-4a45-a808-38c6d79323c3","version":251,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["Katrine Whiteson"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:05 AM"]],"title":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},"created_time":1687824774421,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"11b1742c-9e64-4811-a371-6bf962e05694","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"LQJ@":[["Sabrina Green"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},"created_time":1687824793158,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","version":361,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"LQJ@":[["Kevin Burke"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["140"]],"title":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},"created_time":1687803973490,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","version":210,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"LQJ@":[["Tiffany Luong"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["155"]],"title":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},"created_time":1687825345820,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","version":466,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"LQJ@":[["Magdalena Unterer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220-235"]],"title":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},"created_time":1687799421442,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","version":298,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Rime Bioinformatics SAS, Palaiseau, France"]],"LQJ@":[["Antoine Culot"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:25 PM - 2:40 PM "]],"zo?d":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},"created_time":1689241721977,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","version":249,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Jiemin Du"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:40 PM - 2:55 PM"]],"zo?d":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["225-240"]],"title":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},"created_time":1687824771581,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["2:55 PM - 3:15 PM"]],"~Dke":[["240"]],"title":[["Break"]]},"created_time":1687824801783,"last_edited_time":1689390566824,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","version":172,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"LQJ@":[["Susan Lehman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:15 PM - 3:35 PM"]],"zo?d":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3:00"]],"title":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},"created_time":1687825464297,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","version":243,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"LQJ@":[["Katarzyna Danis-Włodarczyk"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:35 PM - 3:50 PM"]],"zo?d":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},"created_time":1687804889505,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","version":225,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"LQJ@":[["Qingquan (Kevin) Chen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:50 PM - 4:05 PM"]],"zo?d":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["335-350"]],"title":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},"created_time":1688514225625,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","version":268,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"LQJ@":[["Gregory Resch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:05 PM - 4:25 PM"]],"zo?d":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},"created_time":1687824778489,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","version":341,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Paul Bollyky"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:25 PM - 4:45 PM"]],"zo?d":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM -10:05 PM"]],"title":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},"created_time":1687824776474,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","version":66,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687825706407,"last_edited_time":1689391232151,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","version":111,"type":"page","properties":{";:c\\":[["Tuesday"]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 7:00 PM"]],"~Dke":[["6:00 PM - 7:00 PM"]],"title":[["Informal Poster session "]]},"created_time":1687825710832,"last_edited_time":1689390577528,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","version":504,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["120 min"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"LQJ@":[["Evergreen Chronology of Inspiration Panel"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},"created_time":1687825713435,"last_edited_time":1689390587466,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","version":100,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9 PM - ?"]],"title":[["Celebration/Dancing"]]},"created_time":1687825714716,"last_edited_time":1689390835462,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","version":51,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 7: Phage and the immune system"]],"title":[["Session 7: Phage and the immune system"]]},"created_time":1689385364350,"last_edited_time":1689390824571,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","version":226,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, USA"]],"LQJ@":[["Dwayne Roach"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},"created_time":1687803976098,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","version":173,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"LQJ@":[["Krystyna Dabrowska"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:50 AM - 9:10 AM"]],"zo?d":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["850"]],"title":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},"created_time":1687803197335,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","version":177,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Philip Lauman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:10 AM - 9:25 AM"]],"zo?d":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["910"]],"title":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},"created_time":1687825352404,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","version":236,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["College of Life and Environmental Sciences, University of Exeter"]],"LQJ@":[["Meaghan Castledine"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:25 AM - 9:40 AM"]],"zo?d":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["925"]],"title":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},"created_time":1687804887674,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","version":198,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Léa Zinsli"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:40 AM - 9:55 AM"]],"zo?d":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["210"]],"title":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},"created_time":1687824768936,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","version":303,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"LQJ@":[["Thomas Smytheman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:55 AM - 10:15 AM"]],"zo?d":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940-955"]],"title":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},"created_time":1687825475724,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"944c9a63-de56-4d06-b8cd-06558125646e","version":155,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"pjT:":[["10:15 AM - 10:35 AM"]],"~Dke":[["955"]],"title":[["Break"]]},"created_time":1688512417106,"last_edited_time":1689390828482,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","version":35,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"title":[["Session 8: Molecular phage biology I"]]},"created_time":1689385380738,"last_edited_time":1689390817548,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"LQJ@":[["Vivek Mutalik"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:35 AM - 10:55 AM"]],"zo?d":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:25 AM"]],"title":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},"created_time":1687799457743,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e149194-e542-4204-8062-fd608eec8872","version":249,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Enea Maffei"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:55 AM - 11:10 AM"]],"zo?d":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},"created_time":1687803193040,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","version":327,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Carmen Gu Liu"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:10 AM - 11:25 AM"]],"zo?d":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},"created_time":1687825727042,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","version":350,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"LQJ@":[["Jordan Romeyer Dherbey"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:25 AM - 11:40 AM"]],"zo?d":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["150"]],"title":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},"created_time":1687803195265,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["10 min."]],"B:Eq":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"LQJ@":[["Bani Mallick"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:40 AM - 11:50 AM"]],"zo?d":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["930-945"]],"title":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},"created_time":1687825724713,"last_edited_time":1689390622730,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","version":42,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687825725697,"last_edited_time":1689391247104,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","version":61,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"LQJ@":[["Chair: Michael Koeris"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"title":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},"created_time":1689385397612,"last_edited_time":1689390775948,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","version":418,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"LQJ@":[["Michael Koeris"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["355"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825471094,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","version":190,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["PhagePro, Inc"]],"LQJ@":[["Minmin Yen"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["410"]],"title":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},"created_time":1687825467340,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","version":239,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Locus Biosciences"]],"LQJ@":[["Nick Conley"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["425"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825472550,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","version":298,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Dominic Sauvageau"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["440-455"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825477708,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","version":193,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["2:05 PM - 5:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1688513391651,"last_edited_time":1689390780669,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","version":175,"type":"page","properties":{";:c\\":[["Wednesday"]],"Mf`v":[["TBA"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 7:00 PM"]],"~Dke":[["5:00 PM - 7:00 PM"]],"title":[["Dinner (TBA)"]]},"created_time":1688513047039,"last_edited_time":1689391243919,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","version":233,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["Formal Poster Session/Mixer I"]]},"created_time":1688513045165,"last_edited_time":1689390784399,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","version":114,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:30 PM - ?"]],"~Dke":[["6:30 PM - ?"]],"title":[["Phage sculpture building"]]},"created_time":1688881537706,"last_edited_time":1689390731272,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7781829a-04c3-488d-8c00-67cbfa195279","version":72,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9:00 PM - ?"]],"title":[["Dancing "]]},"created_time":1688513043334,"last_edited_time":1689390786731,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","version":56,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"title":[["Session 10: Ecology & Informatics II"]]},"created_time":1689385411869,"last_edited_time":1689390736908,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ac725466-3339-4427-9079-434d80ade7b9","version":319,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"LQJ@":[["Ryan Cook"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220"]],"title":[["TBA (Phage ecology)"]]},"created_time":1688512414351,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","version":386,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Leicester"]],"LQJ@":[["Sophie Harrison"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:50 AM - 9:05 AM"]],"zo?d":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["235"]],"title":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},"created_time":1688512411541,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"LQJ@":[["Michael Shamash"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:05 AM - 9:20 AM"]],"zo?d":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1115"]],"title":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},"created_time":1687825730087,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","version":290,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Martha Clokie"]],"PvYj":[["No"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:20 AM - 10:20 AM"]],"zo?d":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["TBA"]]},"created_time":1688514593287,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","version":160,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10"]],"title":[["Break"]]},"created_time":1688088803519,"last_edited_time":1689390791508,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5489e88d-538f-4a44-804d-ee83ee558203","version":69,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"LQJ@":[["Chair: Hany Anany & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"title":[["Session 11: Phage in food and agriculture"]]},"created_time":1689385433340,"last_edited_time":1689390765437,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2e95f701-433d-46d7-b576-3763b363edf7","version":232,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["KU Leuven, Belgium"]],"LQJ@":[["Jeroen Wagemans"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["10:40 AM - 11:00 AM"]],"zo?d":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1030"]],"title":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},"created_time":1688512255481,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","version":228,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Research Scientist"]],"LQJ@":[["Hany Anany"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:00 AM - 11:20 AM"]],"zo?d":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1050"]],"title":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},"created_time":1688512253803,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","version":245,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"LQJ@":[["Thomas Denes"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:20 AM - 11:40 AM"]],"zo?d":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1110"]],"title":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},"created_time":1688512251773,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","version":257,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["SCIPHAGE"]],"LQJ@":[["Viviana Clavijo"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1125"]],"title":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},"created_time":1687825723153,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","version":90,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1688088805159,"last_edited_time":1689391256910,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","version":40,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"title":[["Session 12: Molecular phage biology II"]]},"created_time":1689385453912,"last_edited_time":1689390755122,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","version":225,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"LQJ@":[["Katharina Höfer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1pm"]],"title":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},"created_time":1687799450907,"last_edited_time":1689390664639,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"581507dc-533e-4600-9215-03f0e000393d","version":329,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Janine Bowring"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},"created_time":1687825728292,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","version":294,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"LQJ@":[["Rebecca Quinn"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["205"]],"title":[["Phage tRNAs Subvert Host Resistance"]]},"created_time":1687799408892,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","version":222,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"LQJ@":[["Valentina Andrea Floccari"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["845"]],"title":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},"created_time":1687825727796,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","version":248,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, University of Idaho"]],"LQJ@":[["Tracey Peters"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:05 PM - 2:20 PM"]],"zo?d":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["915"]],"title":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},"created_time":1688512649947,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","version":310,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Department of Medicine, McMaster University"]],"LQJ@":[["Gayatri Nair"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:20 PM - 2:30 PM"]],"zo?d":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9"]],"title":[["Biasing Bacteriophage Behaviour"]]},"created_time":1687799452995,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","version":267,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"LQJ@":[["Jieting Lin"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:30 PM - 2:40 PM"]],"zo?d":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1140-1155"]],"title":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},"created_time":1688878455809,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:40 PM - 2:55 PM"]],"~Dke":[["250"]],"title":[["Closing Remarks / Future Meeting"]]},"created_time":1688514591043,"last_edited_time":1689390673609,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","version":255,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:05 PM - 5:00 PM"]],"title":[["Formal Poster Session/Mixer II "]]},"created_time":1688088808511,"last_edited_time":1689390674834,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","version":261,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:00 PM - 5:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},"created_time":1688088811059,"last_edited_time":1689390678171,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","version":183,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Mf`v":[["Olympia"]],"R\\:D":[["Social/Fun!"]],"pjT:":[["5 PM - 9:00 PM"]],"title":[["Adventure out into Olympia for dinner and an evening on the water. "]]},"created_time":1688513305939,"last_edited_time":1689390724489,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c39de849-001b-4ae2-866a-68f4655eed15","version":84,"type":"page","properties":{";:c\\":[["Friday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"R\\:D":[["Social/Fun!"]],"title":[["Mt. Rainier hike!"]]},"created_time":1689388334090,"last_edited_time":1689390721716,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":201,"visible":false,"property":">>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"FmK{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"fb24f8e8-7c0e-4774-8d4f-6bec35029c13","version":292,"type":"table","name":"For copying to final","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":225,"visible":true,"property":">>Gm"},{"width":124,"visible":true,"property":";:c\\"},{"width":285,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"pjT:"},{"width":286,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":159,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","version":818,"type":"table","name":"Sorted by name","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":176,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zo?d"},{"width":194,"visible":true,"property":">Gm"},{"width":121,"visible":true,"property":"<\\t`"},{"width":200,"visible":true,"property":"R\\:D"},{"width":372,"visible":false,"property":"_HTj"},{"width":200,"visible":false,"property":"Mf`v"},{"width":200,"visible":false,"property":"pjT:"}],"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"page_sort":["80d7da9f-82c3-406e-9741-bcc1b9cff1a9","b8f20d87-b39a-4064-a023-6abfca157c88","3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","e86b039d-5c7a-4e4d-8623-a6b08cb24a48","320fbd52-2c2b-475f-b2da-07864683da29","5ff3d332-073e-4c93-b127-e69f9df169d5","d179a076-b691-46ad-a752-ce32dfa11bcd","1dda772e-1e87-4a0c-a582-a191ff304204","b8eee1a0-1cc3-42fd-8b29-ff4e3c581d19","26108f23-c750-4058-b26f-8420fb7748a3","73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","1d704fe9-bd23-4fb7-9d74-a974c65e2244","bf7b51df-bfff-459b-85dc-ff4fc776c9aa","7cf59d05-a856-4633-978a-a56a880f0cf8","455e36c6-1fcc-41db-89d5-4e5a959c349a","dd04346a-c48c-4d7c-89ac-5e1920576bfa","1d996c31-e552-4e3f-86d5-681bd1884843","75dc8c11-862a-498b-8cea-c14a7c6a18e9","dff47c86-ccda-4517-adbb-34074ba2ffa4","58ca3e2e-cbc1-43a5-a9bf-710bc2264a6f","fea14a8b-2951-4dff-acac-14de4789184d","3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","07279636-6443-4a25-abd5-07a40b1882c9","ba3bfc5f-241c-49ce-ae27-2ba7527b27d6","d5e79306-ddfc-4d96-9ebd-47eaec869c27","cfecf9c5-fd50-4930-9264-2f7c3726672d","b0a8cfd9-bf0f-4696-9bdd-b0b05d7cec71","9914254b-f117-427d-a18e-942c13978d1a","a82c044e-1394-4475-92bf-9c43e718a38c","3918b591-a398-4a45-a808-38c6d79323c3","c556f9b3-2a23-4bf2-a7cd-fff5434f949a","d0c49619-86e8-43cd-9df3-86dd7c1c1d1d","4c230034-857b-4aff-b554-3cf22b957cdd","8d47b39b-636b-47a2-ac35-5f3051689147","25b27f0c-aa35-4926-b595-208c5231130e","148eaf01-e456-4435-9314-0066f1d2d6de","7916e9a3-6952-4d49-83b8-2e697415d72a","b7abe37a-8c9c-4efc-83a8-0ccc36de5d1d","bfb853d9-b1e6-481a-970e-6c100c0f16c7","21b8ee51-3565-496e-84ff-8782203c072c","b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","c67fb2e5-b1ab-4d56-af58-d8d56db18c88","e693a814-7ac1-4664-b3c2-cee5d3549c5a","a37f9cb1-3d9d-459a-a1c4-68bf475ea444","b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","9c167305-10ba-4b34-a092-7a5ea13239b4","d2710181-6321-4d71-88c7-5f049d2dfd57","ee3dcdd1-d7bc-4809-9caf-ce8bec318384","d36485a7-d749-4512-a97f-8a64bdec62f4","43b54100-7643-4867-8231-1727a947cd4d","9d48e9c9-260f-41b2-a21e-9441bab74ca0","e3f09768-d770-415c-b768-b8278b5482a0","87fe14a6-6042-483b-8261-a3d7a9596298","dab8ef42-154f-4e4b-b34a-7da4616f7368","edfe4fce-28e9-4b98-a80a-6cf3afa53856","4e149194-e542-4204-8062-fd608eec8872","cdb99eef-cdbd-4aaa-a678-dc089739c335","e15b3ca5-974f-4409-a879-31857807f86e","8963ee06-88f2-4f4b-a3cf-5e6ee6244bd6","394bdbe9-ca41-4113-b5e0-1fc9729d0e11","cfde895b-a32e-4fef-8c75-85755601e11d","d72b0b26-a76a-426b-aec4-8c87f84ed27f","50505d83-a8c8-460e-a976-4f53b6e15dff","c26cd957-9549-41af-ab46-126152046e11","4b93b494-6ace-4fe2-91ae-5a11a4b2698f","16678ca8-1e8a-497e-a3d2-bf8edab31a3b","e992eab2-5475-424e-abaa-de0736c4c3c5","26cddb2d-015e-4a96-a665-5c3ae68f958f","634cc05d-293e-4549-a903-dfb8d19b9e4b","f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","20917259-a2cf-40c9-a72e-3374fe2062ea","5415f867-573e-4b4d-bfc0-e3581989dbe5","d2e78427-4fb8-4a28-95c9-b30cb1f509f5","bf6fe550-9932-4e46-ba29-7745a0608549","8bcad3aa-f2d4-4f61-895f-ad066706dfca","30efc624-9c89-4337-a70d-a427146c730b","6a8181aa-972a-4e87-b78f-30f05a5f7387","b5683451-84aa-4bd7-a17d-b370db7980be","138df2d1-4629-4211-9ea0-396f458d2b4c","5499e98a-832c-4a8c-aba1-ec1d9f57292b","a3cd60e9-c694-46fe-a631-f24b44da1cdc","fcead5f3-6947-423d-8683-0c65e83ed8f9","5ba12c78-37ec-4f42-8ed9-e8b1b4abca41","375dd916-026d-4e76-9f86-89ba2d2482f3","c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","45e610f2-5dab-4cf8-8976-62ef58f65417","25bad495-34fe-4db7-b879-f92f359edb71","229860cd-cae1-483d-9476-14ce608bc0ab","d04deead-44b9-4e15-97ff-af4faac462b8","3b540bde-6c3d-4c1a-b7bb-682eba1404df","21dfef19-a016-4520-bc9a-6eaac35c0123","d8b23bc3-90e8-4486-8eb3-8287563d77af","c297bc53-3c36-45af-95b9-867bd1763528","b3af1c11-d888-4292-b1c9-49004d6d90bd","a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","7e3d2dd1-b680-4c11-bfe5-f5f9510a099b","eaf6242a-4ccc-42d0-9df4-64516ae6da10","bd7f78f0-9879-4a81-9843-020c0aedb8bf","15501ed4-0d22-4449-bc23-74bf5e810fe5","cd74805b-8867-46ba-bf38-b8b720f697a8","8927a91f-eff6-42c1-9dd8-0fc959c0feee","ab6c1c7f-e4dc-4292-a336-a8aeeeea5231","947742f7-73c1-4b7d-b535-14fe28df6455","ca2f9f2d-3cc0-4add-92e4-24d4b79b4811","bff2728f-9ccd-4f6d-80a0-bde174b96ac7","8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","9919ea53-db46-44e6-b90a-37dac36054a2","abb3181f-8478-447e-8ef4-4f798c674ac0","f423b719-8bc2-446a-af8f-fe6cedc5db93","1cf907e2-8eef-44ff-8381-1aeba6f6fe20","c2c58aff-b2bd-478e-a740-d4959d9ac154","ed30e6f6-7c05-4756-a13f-a8d83d34bec6","11b1742c-9e64-4811-a371-6bf962e05694","2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","1cef6663-9aaf-4d01-a450-e5e863af04b8","3b88ee39-8868-4cfb-83bb-1f234e16724d","dc003b5e-bd14-4150-af35-cf1eca003e13","c0de3776-ede0-4c30-be88-288a19604379","dbb449a2-7df2-4821-a94d-400b65aed1e0","0a75393a-f05c-441a-b978-0b033e7b3dcb","a3a8dd50-043c-4586-9e6a-165dae46e7cd","1efe468a-0193-4078-a1b4-66c36ef05846","a42cc434-71a4-47e5-8950-2ff2d585e4bc","d1569dba-23b6-46a0-9556-b71ff0727e26","a259cd5d-0a45-40d2-98d7-afb774a00554","4180d7bc-d11f-4d4f-be7b-801320cf94aa","cfc42d63-ec72-443e-a1e0-7cd15cd1b6b2","6bfdf00f-db69-4def-ab47-e13a8cd7b673","6028f4b4-f271-472c-a2c8-acb11caa3fff","60a853d5-098c-4f34-b9dd-46a58efe5216","c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","67f94fd5-db64-4d62-bea2-987fa2be2f69","c1b92230-2e51-412e-8149-d83f131e77e7","f09da0ac-5747-44e4-bf6a-4291fee3d9a2","1bb96063-db6c-4cbe-af69-2d00c6a7b369","2216cb44-05b3-490e-84e6-f928b4ed2aef","276d1e16-7a7c-4552-b2a5-6425ef44907b","5df0843e-6388-403c-aff3-0fd826eb55bf","e23c80b4-93af-47c4-a213-c2fdf3d919bf","d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","2dc746fa-8f4f-423d-ab3b-646834be8e8a","be032e3f-6934-41cb-82dc-c1c6f47f5142","f3b72cc7-1135-4121-bb1a-e14befc8eb4f","b706798a-20fd-460d-b182-3528d57c3743","3137dcf5-8634-4567-825e-b680eba551d9","1a64bcc6-373d-4d33-a78b-82fa0e1d2c21","6c056d5a-a4aa-423f-ac4e-5da45899f8c3","d8b88202-9bbb-4794-a41c-ade28f86ec79","f695b133-d79e-4a28-806a-c7816b2b20e5","8f11570b-97d7-432c-9e08-8d81c364a9bd","cba0e342-eb23-490d-bcb3-5ad702ffe616","ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","14d54749-63ad-4780-8bf0-bfd9ed9db335","a1307bb9-ff3e-4f34-a82b-0f00e80bb259","ca5acf7a-8883-4fdd-8645-c20d646b6ea4","944c9a63-de56-4d06-b8cd-06558125646e","1dbba8a9-1e44-443d-b3f5-1215cb7684c7","d78d4962-bc5b-465f-8021-218e20f5fc7a","29cbb222-2f1b-4e94-9906-136598c6a36e","8c311bef-4951-42b3-af2b-64f4b1a8533b","9c16ce62-0fa0-40bc-9aa0-33562495d8e0","0be688d3-4b95-466c-99c7-1e10555047ca","435f531a-0c04-4507-8cdd-8ab2ba2098a6","29178e11-4d8e-4bfb-a185-ad6ef228be55","8a299808-90ad-4a99-a961-487a74113602","20593fb1-7b98-4ad4-b665-bd51d17ea110","76c088a7-e1d9-4cf3-8c2a-a089d5872a73","8e803c64-fa50-43d5-8b56-3166792858c6","921231f0-8471-4717-872a-ed53c83b9150","4599af88-8851-4ad4-9120-ac7720b2a9b0","6148d44a-7933-4d98-8ce1-d22be7db73d1","ca9891b7-6b3d-4afe-a3b4-37e49274f963","220244b9-e22e-4c55-921e-2f2d98fa01a0","4a5045e7-0d9c-44bc-b079-8a0f32dc2ab8","df60a7dd-daaa-4aae-ad38-a8977ae8223c","b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","27a95a36-f080-43c2-8b8c-1a10c814f35a","fbae94a2-65d1-4db9-b48e-eb296215e7d3","ddafcc94-0025-4912-9da6-2bd214d70984","97f6e680-6894-4879-aae5-2d099a0439fe","2550fd85-0e8c-40bf-aa42-30b6fe394df3","9af07187-e2f0-4dca-9f87-175ecc1c41ea","c9a4078e-fec0-4a47-8779-2552487e4143","71950354-ce16-4acb-9537-926885811e17","bf482d4d-f2b1-4160-99bb-9ded585ff518","a68d9e08-8804-41ae-88f3-af9fc9f52b6a","cde43b84-f7b5-4076-b0fa-d9883edbe118","949bdd60-dd5d-4871-9248-16183ae117bb","9d80a5a4-f80a-4344-86c1-fffe5724a93f","0d914c29-ad5e-4682-9eb5-cccd8b35d156","15e8b124-9e95-4d7d-937d-a7448126d443","789fff4a-31ae-4724-8214-cbad2a03bc6c","c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","37f64d6c-856a-45d4-ae1c-787aa2eaac29","a604a22d-e533-4b87-bb55-09adc2af00ca","7781829a-04c3-488d-8c00-67cbfa195279","c7139154-3923-4dee-8181-a6243de4c976","f3ac9766-0302-4522-906d-45ad7a8ea060","2b86d329-32b9-4e95-8c15-fe6ea90ef4eb","a3ff1019-73c2-46ef-a917-0c749dc7a66b","ac6cc1d7-0745-47fd-9b87-84c63329039f","581507dc-533e-4600-9215-03f0e000393d","5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","471524da-ac95-4e70-834e-cad6e07afe1f","8db54920-85c2-457c-9ba7-9901243cfbbc","bf1e263f-818f-4196-ab92-7167aeedecf8","e888c902-3fb5-4e97-9db4-39c540023ab7","f2624eb4-9955-441d-870a-86d77cfc9f29","a6427d07-59df-4500-89bf-63153e845c67","2e95f701-433d-46d7-b576-3763b363edf7","d8bc49a0-033d-43f7-a57c-e3a267f55879","4e34ad83-a93f-4fad-a000-625e1e7ce92a","182fb594-883e-45ca-9b0a-f7dfb57f2ba7","26eaaf74-61d5-4b57-a7c1-d644e164302e","bb0c3590-afbe-4528-aba6-bda243798293","2c5431f2-8923-4b9b-adfb-344533552bdd","3f82ea9d-6118-49b3-a167-cdab2fe82497","ce6df1d4-f38a-4649-bc2c-b847e48b5056","e2a17874-e8e5-44fe-aff2-f2cb9c56098a","aa5cf4e8-a847-4cd3-80a2-ee1de8369ce4","a22b1812-888d-4ad8-8e0c-40ed5be324d4","fe40b9d7-4313-43be-82cc-2d57a0cdb61b","12d07a36-a3c7-49cc-8fe3-63d060d04339","86f3cc7b-6590-4819-9f87-95ec5c6c6c1d","6e778f3a-e16d-4970-a3af-0b7dddb43b64","e79b83e8-55bc-4750-b4f7-9646647d8d19","1a56df20-9634-4e16-873a-db82c54b9d48","7b0e1ccd-df28-481e-9d87-3d9838200395","6f7a547e-f143-4997-8363-808723cadb92","ee186a6d-8647-4202-8f1d-516c4d4229dc","1d86cd3c-e014-46e0-8f73-0e70d4287cd5","85295232-d496-49cd-89d6-30495d7e4cb4","6ce6f053-2c4b-4987-bf3c-d2a5ec03ecf2","3d79767d-be48-4947-ab26-bf43ae1451bd","990dd017-90eb-4940-b5e4-9ac8e5f2562c","e4122488-d85f-4ea0-a801-2c23a9312574","dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","54c930a8-c75b-4cbb-91d1-ab759487c9a3","ac725466-3339-4427-9079-434d80ade7b9","d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","bd297533-496f-4d20-b81f-7ad4e0756397","3ee8e07b-eea3-4939-9055-6aff48e3e51a","a96898de-d384-45ec-961c-8f01fdb5dc73","32e0ad0e-d72f-48f0-bba4-6a3707604aaa","4007bf81-b00e-4750-b851-7ec471273bf2","40aeedb7-0877-478c-b4e4-49395f7b26cf","8673752a-79a8-4568-8deb-571cd6aab24d","69f8b658-9cfb-407d-90c6-3efc9b96835b","3e3afdd9-5775-4d05-9b9a-6bf8d515fc04","f91d821b-f4af-4f98-9c77-967120c13514","77203aa4-43b9-4b93-97bf-b1cbae4e14eb","76add0fa-5b7d-4d47-a705-8228c7a6d146","fa33325b-d6dd-4fe4-9a1f-dd7db6d78f95"],"query2":{"timeline_by":">>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"5537f8ba-2f92-467f-aca5-d43a0e59d6ab","version":32,"type":"calendar","name":"","format":{"table_properties":[{"width":308,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"=WD`"},{"width":200,"visible":true,"property":"~Dke"},{"width":329,"visible":true,"property":">>Gm"}],"calendar_properties":[{"visible":false,"property":"zo?d"},{"visible":true,"property":"R\\:D"},{"visible":true,"property":":iJn"},{"visible":true,"property":">>Gm"},{"visible":false,"property":"pjT:"},{"visible":false,"property":"_HTj"},{"visible":false,"property":"PvYj"},{"visible":false,"property":"<\\t`"},{"visible":false,"property":"=WD`"},{"visible":false,"property":"B:Eq"},{"visible":false,"property":">Gm","timeline_by":">>Gm"},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"be03b38d-8ecb-4ecf-84b2-d84948b9ed6f","version":23,"type":"table","name":"Chronological","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":228,"visible":true,"property":"title"},{"width":225,"visible":true,"property":">>Gm"},{"width":279,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"zo?d"},{"width":163,"visible":true,"property":"=WD`"},{"width":179,"visible":true,"property":"~Dke"},{"width":200,"visible":true,"property":"pjT:"},{"width":539,"visible":true,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 b/.wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 new file mode 100644 index 0000000..a915c0c --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 @@ -0,0 +1 @@ +{"error":"Route not found!","routes":["/v1/page/:pageId","/v1/table/:pageId","/v1/user/:pageId","/v1/asset?url=[filename]&blockId=[id]","/v1/:blockId"]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/b6a9606acbc5c7c1094bfe537cd4afdfb217b67c083f576fbca61fa0b2fbc20a00023b96c2a468c3 b/.wrangler/state/v3/cache/default/blobs/b6a9606acbc5c7c1094bfe537cd4afdfb217b67c083f576fbca61fa0b2fbc20a00023b96c2a468c3 new file mode 100644 index 0000000..daa9db1 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/b6a9606acbc5c7c1094bfe537cd4afdfb217b67c083f576fbca61fa0b2fbc20a00023b96c2a468c3 @@ -0,0 +1 @@ +{"rows":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"Quadram Institute, UK","Speaker":"Instructor: Evelien Adriaenssens","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"Viromics: Viral community analysis with metagenomics"},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"TAILOR Labs, Baylor College of Medicine","Speaker":"Instructor: Justin Clark ","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["0cd38da4-0919-4b69-bb95-3d9a6c8ae352"],"Event":"Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"BBQ Welcome lunch at Evergreen"},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Speaker":"Instructor: Ramy Aziz & Rebecca Wattam","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["c90b69ff-e994-403b-b885-59871db7734c"],"Event":"TBA (Genomics/PATRIC)"},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Affiliation":"Phages for Global Health","Speaker":"Instructor: Tobi Nagel & Fran Hodges","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["72bc1da3-cc5a-4293-8f3c-a8de212cf1ea"],"Event":"TBA (Biobanking)"},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"},"Session":"Pre-conference workshop","Time":"6:30 PM - 8:30 PM","Event":"(TBC) Workshop Extension"},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Poster Session","Time":"6:00 PM - 9:00 PM","Event":"Informal Poster Session "},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Social/Fun!","Time":"6:00 PM - 9:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"},"Location":"Purce Hall","Session":"Session 1: Plenary talks","Event":"Session 1: Plenary talks"},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":"Monday","Length of talk":["15 min"],"Session":"Session 1: Plenary talks","Time":"8:30 AM - 8:45 AM","Event":"Phagebiotics Welcome!"},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Martin Loessner","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"8:45 AM - 9:05 AM","Name of speaker":["be36f174-7518-499c-aa4c-4fe8c08ecfd1"],"Event":"Bacteriophages by design: tiny killers and smart detectives"},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Quadram Institute Bioscience","Speaker":"Evelien Adriaenssens","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"9:05 AM - 9:25 AM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"What’s going on with phage taxonomy and is it really necessary?"},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"},"Speaker":"Chair: Teagan Brown & TBA","Location":"Purce Hall","Session":"Session 2: Ecology & Informatics I","Event":"Session 2: Ecology & Informatics I"},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Lawrence Livermore National Laboratory, Livermore, CA","Speaker":"Gary Trubl","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:25 AM - 9:45 AM","Name of speaker":["cd337cdc-ca59-4f9e-a083-1b1f68fd180b"],"Event":"Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Harvard Medical School","Speaker":"Sian Owen","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:45 AM - 10:05 AM","Name of speaker":["3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c"],"Event":"Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Location":"CAB","Session":"Session 2: Ecology & Informatics I","Time":"10:05 AM - 10:25 AM","Event":"Break"},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Globe Institute, University of Copenhagen, Denmark","Speaker":"Thomas Sicheritz-Pontén","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"10:25 AM - 10:45 AM","Name of speaker":["b06e9b76-ff8a-432b-86e7-029a793897b3"],"Event":"Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University at Buffalo","Speaker":"Kathryn Kauffman","Session":"Session 2: Ecology & Informatics I","Time":"10:45 AM - 11:05 AM","Name of speaker":["49b79643-2347-4528-a497-8f4ed336c33a"],"Event":"Uncovering the roles of phages in the oral microbiome"},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jan Zheng","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:05 AM - 11:25 AM","Name of speaker":["5649ff80-cad7-451f-9b55-d297f1563090"],"Event":"Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phase Genomics, Inc.","Speaker":"Benjamin Auch","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:25 AM - 11:40 PM","Name of speaker":["93d533c0-875c-42c2-9a85-79199379e203"],"Event":"Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Genetics, Stanford University, Stanford, CA, USA","Speaker":"Yishay Pinto","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:40 AM - 11:55 AM","Name of speaker":["8df4db71-3c5c-40e0-9f4e-4671e81dbc71"],"Event":"Phage-inclusive profiling of human gut microbiomes with Phanta"},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":"Monday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 3: Phage defense","Event":"Session 3: Phage defense"},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University of Otago, New Zealand","Speaker":"Peter Fineran","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:00 PM - 1:20 PM","Name of speaker":["ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef"],"Event":"Anti-CRISPR strategies and their regulation"},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"School of Biological Sciences, University of Southampton, United Kingdom","Speaker":"Franklin Nobrega","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:20 PM - 1:40 PM","Name of speaker":["2a748a12-8f17-4a75-80e4-6c5e5752effb"],"Event":"Co-occurrence and synergism of anti-phage defence systems"},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Biology, McMaster University, Hamilton, Canada","Speaker":"Leah Sather","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:40 PM - 1:55 PM","Name of speaker":["0210e1bb-0c5e-4db7-9169-44a85b61799c"],"Event":"Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"School of Biological Sciences","Speaker":"Thomas Todeschini","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:55 PM - 2:10 PM","Name of speaker":["fa7afdac-7554-4588-91c2-b3543ed1f35d"],"Event":"Kiwa modulates host nuclease activity for anti-viral defense"},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Xu Peng","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"2:10 PM - 2:25 PM","Name of speaker":["3a70c9b0-883f-411e-aeff-63e1b91c6175"],"Event":"How archaeal viruses inhibit host CRISPR-Cas immunity"},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Time":"2:25 PM - 2:45 PM","Event":"Break"},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"},"Speaker":"Chair: Sandra Morales & TBA","Location":"Purce Hall","Session":"Session 4: Phage therapy I","Event":"Session 4: Phage therapy I"},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD","Speaker":"Scott Stibitz","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"2:45 PM - 3:05 PM","Name of speaker":["55bdd695-7c84-4da3-a08d-6b35cc79895b"],"Event":"Regulation of Phage Therapy by the FDA: CMC topics"},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phage Consulting, Sydney, New South Wales, Australia","Speaker":"Sandra Morales","Session":"Session 4: Phage therapy I","Time":"3:05 PM - 3:20 PM","Name of speaker":["ab627c93-11a9-4ef0-8deb-fa80f49f4a80"],"Event":"TBA (Phage therapy overview)"},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Queen Astrid Military Hospital, Belgium","Speaker":"Jean-Paul Pirnay","Session":"Session 4: Phage therapy I","Time":"3:20 PM - 3:40 PM","Name of speaker":["f3401535-46c5-44ba-852a-cf31eaaf7818"],"Event":"TBA (Phage therapy experience in Belgium)"},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Yale University, USA","Speaker":"Benjamin Chan","Session":"Session 4: Phage therapy I","Time":"3:40 PM - 3:55 PM","Name of speaker":["8a9e19e8-f881-437b-8c9e-594d07a25d95"],"Event":"TBA (Phage therapy experience at Yale)"},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Austen Terwilliger","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"3:55 PM - 4:15 PM","Name of speaker":["71c70747-235c-4e79-a22c-8764e7076ccd"],"Event":"A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":"Monday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":"Monday","Session":"Special Session","Time":"5:30 PM & 6:00 PM buses","Event":"Head to bus depot and go downtown to movie theater"},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"},"Speaker":"Panel: Martha Clokie, Diane Shader Smith, & more TBA. ","Location":"Downtown Olympia","Session":"Special Session","Time":"7:00 PM - 9:30 PM","Event":"Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":"Monday","Session":"Special Session","Time":"9:30 PM, 10:15 PM, 11 PM buses","Event":"Buses back to Evergreen"},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"},"Speaker":"Chair: Gina Suh & TBA","Location":"Purce Hall","Session":"Session 5: Phage therapy II","Event":"Session 5: Phage therapy II"},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":"Tuesday","Length of talk":["10 min."],"Session":"Session 5: Phage therapy II","Time":"8:30 AM - 8:40 AM","Event":"Introduction to keynote"},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":"Tuesday","Length of talk":["60 min."],"Speaker":"[Keynote] Diane Shader Smith","Session":"Session 5: Phage therapy II","Time":"8:40 AM - 9:40 AM","Name of speaker":["c6f82a66-2bb7-4431-8cb8-6ded07aa301c"],"Event":"Keynote TBA (Phage therapy patient/parent experience)"},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jessica Sacher","Accepted in airtable":true,"Session":"Session 5: Phage therapy II","Time":"9:40 AM - 10:00 AM","Name of speaker":["745163f6-a397-4a4c-b4cb-154e2ef458a9"],"Event":"Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"University of Toronto","Speaker":"Greg German","Session":"Session 5: Phage therapy II","Time":"10:00 AM - 10:20 AM","Name of speaker":["099bc17c-8582-473b-97c2-1b14f1c8a444"],"Event":"TBA (Phage therapy experience in Canada)"},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":"Tuesday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":"Tuesday","Length of talk":["15 min"],"Speaker":"Talk - Chris Shafer ","Accepted in airtable":false,"Session":"Session 5: Phage therapy II","Time":"10:40 AM - 10:55 AM","Name of speaker":["cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7"],"Event":"TBA (Patient experience)"},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":"Tuesday","Length of talk":["5 min"],"Session":"Session 5: Phage therapy II","Time":"10:55 AM - 11:00 AM","Event":"Introduction to keynote"},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":"Tuesday","Length of talk":["60 min."],"Affiliation":"IPATH, UCSD","Speaker":"[Keynote] Steffanie Strathdee","Session":"Session 5: Phage therapy II","Time":"11:00 AM - 12:00 PM","Name of speaker":["db83cbad-3504-4120-8eb2-a9e9f588fb29"],"Event":"TBA (Phage therapy experience in San Diego)"},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 6: Understanding & improving phage therapy","Event":"Session 6: Understanding & improving phage therapy"},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"IPATH, UCSD","Speaker":"Katrine Whiteson","Session":"Session 6: Understanding & improving phage therapy","Time":"1:00 PM - 1:20 PM","Name of speaker":["9dce44b9-3367-4c00-91b7-147e7554c75c"],"Event":"Better together: Phage cocktails constrain the growth of Enterococcus"},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium","Speaker":"Sabrina Green","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:20 PM - 1:40 PM","Name of speaker":["dddc50d1-cf21-42a5-99b9-b265b09b51d2"],"Event":"Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD","Speaker":"Kevin Burke","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:40 PM - 1:55 PM","Name of speaker":["e2672fc8-3000-4de3-b372-baa29bff31cb"],"Event":"Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, CA 92182, USA","Speaker":"Tiffany Luong","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:55 PM - 2:10 PM","Name of speaker":["70862f59-9b2b-498e-a110-eca0fa064e94"],"Event":"Lost in circulation: Improving the in vivo activity of phage cocktails"},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany","Speaker":"Magdalena Unterer","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:10 PM - 2:25 PM","Name of speaker":["9e27a8ec-a3b8-4167-9217-d7f4c8bc9008"],"Event":"Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Rime Bioinformatics SAS, Palaiseau, France","Speaker":"Antoine Culot","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:25 PM - 2:40 PM ","Name of speaker":["fc603774-7a1b-4ee5-987e-37afce4b85bd"],"Event":"Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Jiemin Du","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:40 PM - 2:55 PM","Name of speaker":["e757271b-ff33-407a-89b8-8cd37f0d9f7f"],"Event":"Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":"Tuesday","Length of talk":["20 min"],"Time":"2:55 PM - 3:15 PM","Event":"Break"},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD","Speaker":"Susan Lehman","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:15 PM - 3:35 PM","Name of speaker":["e868601c-0a86-4534-862a-feea152760d9"],"Event":"A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA","Speaker":"Katarzyna Danis-Włodarczyk","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:35 PM - 3:50 PM","Name of speaker":["46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4"],"Event":"Topical phage treatment of a P. aeruginosa mouse wound-infection model"},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA","Speaker":"Qingquan (Kevin) Chen","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:50 PM - 4:05 PM","Name of speaker":["be03672d-3029-461b-81ca-9fa90eb3248b"],"Event":"Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland","Speaker":"Gregory Resch","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:05 PM - 4:25 PM","Name of speaker":["e9bd9655-a26e-48a5-9afb-16ba0082c88f"],"Event":"Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA","Speaker":"Paul Bollyky","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:25 PM - 4:45 PM","Name of speaker":["99674cc4-e81f-45a2-912b-50cefd63c4e9"],"Event":"Circulating bacteriophages can identify bacterial pathogens in human infections"},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":"Tuesday","Session":"Poster Session","Time":"6:00 PM - 7:00 PM","Event":"Informal Poster session "},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":"Tuesday","Length of talk":["120 min"],"Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"},"Speaker":"Evergreen Chronology of Inspiration Panel","Location":"Purce Hall","Session":"Special Session","Time":"7:00 PM - 9:00 PM","Event":"TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":"Tuesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Celebration/Dancing"},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 7: Phage and the immune system","Event":"Session 7: Phage and the immune system"},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, USA","Speaker":"Dwayne Roach","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:30 AM - 8:50 AM","Name of speaker":["47154f21-f3d7-4f67-bc63-044dcd457522"],"Event":"The Viral Immunogenicity of Clinically Relevant Bacteriophages"},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland","Speaker":"Krystyna Dabrowska","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:50 AM - 9:10 AM","Name of speaker":["d043af99-31e1-4899-b2d6-e7aebfb09289"],"Event":"PhageScan: identification of major phage epitopes that are immunogenic for humans"},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Philip Lauman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:10 AM - 9:25 AM","Name of speaker":["a5125779-3bd8-4770-9ddd-a7de0bfec554"],"Event":"O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"College of Life and Environmental Sciences, University of Exeter","Speaker":"Meaghan Castledine","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:25 AM - 9:40 AM","Name of speaker":["e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0"],"Event":"Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Léa Zinsli","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:40 AM - 9:55 AM","Name of speaker":["cc428e33-a0a8-427d-a52c-e16bf7a5b030"],"Event":"Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA","Speaker":"Thomas Smytheman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:55 AM - 10:15 AM","Name of speaker":["8fdd1c46-143b-40aa-8887-ff385fcbff06"],"Event":"Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":"Wednesday","Length of talk":["20 min"],"Time":"10:15 AM - 10:35 AM","Event":"Break"},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 8: Molecular phage biology I","Event":"Session 8: Molecular phage biology I"},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA","Speaker":"Vivek Mutalik","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:35 AM - 10:55 AM","Name of speaker":["26635071-15db-4630-aed0-709d6a5af51e"],"Event":"Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Enea Maffei","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:55 AM - 11:10 AM","Name of speaker":["da86622d-2762-4d2d-8b1d-c500e44dd712"],"Event":"Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Carmen Gu Liu","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:10 AM - 11:25 AM","Name of speaker":["1a4a441d-ee6b-45c9-8b84-0c60dd412cbe"],"Event":"Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany","Speaker":"Jordan Romeyer Dherbey","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:25 AM - 11:40 AM","Name of speaker":["b3d03715-7585-46a6-b31d-98440b9c5a86"],"Event":"Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":"Wednesday","Length of talk":["10 min."],"Affiliation":"ICMR- National Institute of Cholera and Enteric Diseases","Speaker":"Bani Mallick","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:40 AM - 11:50 AM","Name of speaker":["909c2508-9568-4ba0-85b8-10247ee7f7fc"],"Event":"Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":"Wednesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"},"Speaker":"Chair: Michael Koeris","Location":"Purce Hall","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Event":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":"Wednesday","Length of talk":["20 min"],"Speaker":"Michael Koeris","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:00 PM - 1:20 PM","Name of speaker":["a3dd1393-507a-4b0f-890f-c2dae8a37e70"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"PhagePro, Inc","Speaker":"Minmin Yen","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:20 PM - 1:35 PM","Name of speaker":["a7b77d41-ff9a-4650-9e3f-d4d70015a202"],"Event":"Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Locus Biosciences","Speaker":"Nick Conley","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:35 PM - 1:50 PM","Name of speaker":["3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Dominic Sauvageau","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:50 PM - 2:05 PM","Name of speaker":["13ce51a7-4f96-4116-b462-45503a847bec"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"},"Session":"Social/Fun!","Time":"2:05 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":"Wednesday","Location":"TBA","Session":"Food!","Time":"5:00 PM - 7:00 PM","Event":"Dinner (TBA)"},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"},"Session":"Poster Session","Time":"7:00 PM - 9:00 PM","Event":"Formal Poster Session/Mixer I"},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"},"Session":"Social/Fun!","Time":"6:30 PM - ?","Event":"Phage sculpture building"},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Dancing "},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 10: Ecology & Informatics II","Event":"Session 10: Ecology & Informatics II"},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":"Thursday","Length of talk":["20 min"],"Speaker":"Ryan Cook","Session":"Session 10: Ecology & Informatics II","Time":"8:30 AM - 8:50 AM","Name of speaker":["3382a9f0-80c5-473c-9528-80821b7dd0f6"],"Event":"TBA (Phage ecology)"},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Leicester","Speaker":"Sophie Harrison","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"8:50 AM - 9:05 AM","Name of speaker":["c69f71c3-ecf0-439e-af81-b6429d26e631"],"Event":"Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology and Immunology, McGill University, Montreal, Canada","Speaker":"Michael Shamash","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"9:05 AM - 9:20 AM","Name of speaker":["6bb08bf3-d20b-403c-8138-58a25cb2c6d0"],"Event":"Gut virome colonization dynamics in a humanized mouse model of early life development"},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":"Thursday","Length of talk":["60 min."],"Speaker":"[Keynote] Martha Clokie","Accepted in airtable":false,"Session":"Session 10: Ecology & Informatics II","Time":"9:20 AM - 10:20 AM","Name of speaker":["26ff67d0-686a-4347-a52e-f0c6a08d52e3"],"Event":"TBA"},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":"Thursday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"},"Speaker":"Chair: Hany Anany & TBA","Location":"Purce Hall","Session":"Session 11: Phage in food and agriculture","Event":"Session 11: Phage in food and agriculture"},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"KU Leuven, Belgium","Speaker":"Jeroen Wagemans","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"10:40 AM - 11:00 AM","Name of speaker":["25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202"],"Event":"Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Research Scientist","Speaker":"Hany Anany","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:00 AM - 11:20 AM","Name of speaker":["99692a27-5cb0-46c6-b341-74f5d6701ad2"],"Event":"Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Department of Food Science, University of Tennessee, Knoxville, TN","Speaker":"Thomas Denes","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:20 AM - 11:40 AM","Name of speaker":["5d4dea8f-f420-4179-9773-78fcd7929c63"],"Event":"Overcoming hurdles for phage applications in food safety with directed evolution"},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"SCIPHAGE","Speaker":"Viviana Clavijo","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:40 AM - 11:55 AM","Name of speaker":["81f9417a-d86c-4e6b-b125-481ad425ca35"],"Event":"SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":"Thursday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 12: Molecular phage biology II","Event":"Session 12: Molecular phage biology II"},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Max Planck Institute for Terrestrial Microbiology, Marburg, Germany","Speaker":"Katharina Höfer","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:00 PM - 1:20 PM","Name of speaker":["f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae"],"Event":"Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Janine Bowring","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:20 PM - 1:35 PM","Name of speaker":["03894d69-8250-477b-bdb9-279325e1db10"],"Event":"Genomic mobilisation by rRNA operon recombination – another route of phage transduction"},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"School of Life Sciences, University of Warwick, Coventry, UK","Speaker":"Rebecca Quinn","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:35 PM - 1:50 PM","Name of speaker":["163cfe1e-0c11-4f53-ae42-d91dd3a1d516"],"Event":"Phage tRNAs Subvert Host Resistance"},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia","Speaker":"Valentina Andrea Floccari","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:50 PM - 2:05 PM","Name of speaker":["24959fbb-214c-49cb-aac7-573850ffcc34"],"Event":"Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Biology, University of Idaho","Speaker":"Tracey Peters","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:05 PM - 2:20 PM","Name of speaker":["7d737977-f461-42e3-b38d-44612cf790c4"],"Event":"Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Department of Medicine, McMaster University","Speaker":"Gayatri Nair","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:20 PM - 2:30 PM","Name of speaker":["f90b3af0-02da-4596-8063-5fb6fbbb1b59"],"Event":"Biasing Bacteriophage Behaviour"},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada","Speaker":"Jieting Lin","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:30 PM - 2:40 PM","Name of speaker":["a61583c9-528b-4adc-962e-e6a287b2c676"],"Event":"Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":"Thursday","Length of talk":["15 min"],"Session":"Session 12: Molecular phage biology II","Time":"2:40 PM - 2:55 PM","Event":"Closing Remarks / Future Meeting"},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Poster Session","Time":"3 PM - 5:00 PM","Event":"Formal Poster Session/Mixer II "},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Social/Fun!","Time":"3 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt: Hike to beach"},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":"Thursday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"},"Location":"Olympia","Session":"Social/Fun!","Time":"5 PM - 9:00 PM","Event":"Adventure out into Olympia for dinner and an evening on the water. "},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":"Friday","Date & Time":{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"},"Session":"Social/Fun!","Event":"Mt. Rainier hike!"}],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["Quadram Institute, UK"]],"LQJ@":[["Instructor: Evelien Adriaenssens"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Viromics: Viral community analysis with metagenomics"]]},"created_time":1687798566572,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","version":492,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["TAILOR Labs, Baylor College of Medicine"]],"LQJ@":[["Instructor: Justin Clark "]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},"created_time":1687798566573,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"320fbd52-2c2b-475f-b2da-07864683da29","version":285,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:30 - 1:30 PM"]],"title":[["BBQ Welcome lunch at Evergreen"]]},"created_time":1687803510356,"last_edited_time":1689391195918,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","version":391,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"LQJ@":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Genomics/PATRIC)"]]},"created_time":1687798574821,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","version":423,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"B:Eq":[["Phages for Global Health"]],"LQJ@":[["Instructor: Tobi Nagel & Fran Hodges"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Biobanking)"]]},"created_time":1687798577371,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","version":188,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687799240915,"last_edited_time":1689391199074,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","version":121,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["6:30 PM - 8:30 PM"]],"title":[["(TBC) Workshop Extension"]]},"created_time":1689380004207,"last_edited_time":1689391180080,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","version":441,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:30 PM"]],"title":[["Informal Poster Session "]]},"created_time":1687803348235,"last_edited_time":1689390202574,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","version":153,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1687803491538,"last_edited_time":1689390204139,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","version":155,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 1: Plenary talks"]],"title":[["Session 1: Plenary talks"]]},"created_time":1689384912122,"last_edited_time":1689390237972,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","version":238,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:30 AM - 8:45 AM"]],"~Dke":[["8:30 AM"]],"title":[["Phagebiotics Welcome!"]]},"created_time":1687799401390,"last_edited_time":1689390207153,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9914254b-f117-427d-a18e-942c13978d1a","version":281,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Martin Loessner"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:45 AM - 9:05 AM"]],"zo?d":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:45 AM"]],"title":[["Bacteriophages by design: tiny killers and smart detectives"]]},"created_time":1687799405505,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","version":253,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Quadram Institute Bioscience"]],"LQJ@":[["Evelien Adriaenssens"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["9:05 AM - 9:25 AM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1015"]],"title":[["What’s going on with phage taxonomy and is it really necessary?"]]},"created_time":1688512415031,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","version":165,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"LQJ@":[["Chair: Teagan Brown & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"title":[["Session 2: Ecology & Informatics I"]]},"created_time":1689385218335,"last_edited_time":1689390232321,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","version":200,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"LQJ@":[["Gary Trubl"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:25 AM - 9:45 AM"]],"zo?d":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1035"]],"title":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},"created_time":1687825729361,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","version":178,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Harvard Medical School"]],"LQJ@":[["Sian Owen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:45 AM - 10:05 AM"]],"zo?d":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1055"]],"title":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},"created_time":1689054446060,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","version":233,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"Mf`v":[["CAB"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:05 AM - 10:25 AM"]],"~Dke":[["10:05 AM"]],"title":[["Break"]]},"created_time":1687799413680,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","version":301,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Globe Institute, University of Copenhagen, Denmark"]],"LQJ@":[["Thomas Sicheritz-Pontén"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:25 AM - 10:45 AM"]],"zo?d":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},"created_time":1687799423553,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","version":323,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University at Buffalo"]],"LQJ@":[["Kathryn Kauffman"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:45 AM - 11:05 AM"]],"zo?d":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["2"]],"title":[["Uncovering the roles of phages in the oral microbiome"]]},"created_time":1688512413646,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","version":324,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jan Zheng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:05 AM - 11:25 AM"]],"zo?d":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},"created_time":1688512659324,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","version":340,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phase Genomics, Inc."]],"LQJ@":[["Benjamin Auch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:25 AM - 11:40 PM"]],"zo?d":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1145"]],"title":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},"created_time":1688087779835,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","version":397,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Yishay Pinto"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1130"]],"title":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},"created_time":1688087778316,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"43b54100-7643-4867-8231-1727a947cd4d","version":169,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12-1"]],"title":[["Lunch"]]},"created_time":1687799445188,"last_edited_time":1689391206119,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","version":35,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 3: Phage defense"]],"title":[["Session 3: Phage defense"]]},"created_time":1689385244780,"last_edited_time":1689390383379,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","version":311,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Otago, New Zealand"]],"LQJ@":[["Peter Fineran"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1025"]],"title":[["Anti-CRISPR strategies and their regulation"]]},"created_time":1688509096732,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","version":310,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"LQJ@":[["Franklin Nobrega"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1045"]],"title":[["Co-occurrence and synergism of anti-phage defence systems"]]},"created_time":1687799437045,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","version":242,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, McMaster University, Hamilton, Canada"]],"LQJ@":[["Leah Sather"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1105"]],"title":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},"created_time":1687799411405,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","version":320,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Biological Sciences"]],"LQJ@":[["Thomas Todeschini"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1120"]],"title":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},"created_time":1687799425372,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","version":295,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Xu Peng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1135-1150"]],"title":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},"created_time":1687799439413,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","version":235,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"pjT:":[["2:25 PM - 2:45 PM"]],"~Dke":[["2:40"]],"title":[["Break"]]},"created_time":1687803199153,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","version":69,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"LQJ@":[["Chair: Sandra Morales & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 4: Phage therapy I"]],"title":[["Session 4: Phage therapy I"]]},"created_time":1689385265953,"last_edited_time":1689390405405,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","version":244,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"LQJ@":[["Scott Stibitz"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["2:45 PM - 3:05 PM"]],"zo?d":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3"]],"title":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},"created_time":1687804154218,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","version":408,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phage Consulting, Sydney, New South Wales, Australia"]],"LQJ@":[["Sandra Morales"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:05 PM - 3:20 PM"]],"zo?d":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["TBA (Phage therapy overview)"]]},"created_time":1689054379387,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","version":347,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Queen Astrid Military Hospital, Belgium"]],"LQJ@":[["Jean-Paul Pirnay"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:20 PM - 3:40 PM"]],"zo?d":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["340"]],"title":[["TBA (Phage therapy experience in Belgium)"]]},"created_time":1687825469236,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","version":304,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Yale University, USA"]],"LQJ@":[["Benjamin Chan"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:40 PM - 3:55 PM"]],"zo?d":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["4"]],"title":[["TBA (Phage therapy experience at Yale)"]]},"created_time":1688870910296,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","version":339,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Austen Terwilliger"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:55 PM - 4:15 PM"]],"zo?d":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["420-440"]],"title":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},"created_time":1687804152062,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","version":177,"type":"page","properties":{";:c\\":[["Monday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5-6"]],"title":[["Dinner"]]},"created_time":1687804161297,"last_edited_time":1689391211332,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","version":257,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["5:30 PM & 6:00 PM buses"]],"~Dke":[["6:10 PM - 7:00 PM"]],"title":[["Head to bus depot and go downtown to movie theater"]]},"created_time":1687804165074,"last_edited_time":1689391217591,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","version":542,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"LQJ@":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Mf`v":[["Downtown Olympia"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:30 PM"]],"~Dke":[["7:00 PM - 9:30 PM"]],"title":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},"created_time":1687804327137,"last_edited_time":1689390602372,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","version":135,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["9:30 PM, 10:15 PM, 11 PM buses"]],"title":[["Buses back to Evergreen"]]},"created_time":1689385721108,"last_edited_time":1689391222881,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","version":77,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"LQJ@":[["Chair: Gina Suh & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 5: Phage therapy II"]],"title":[["Session 5: Phage therapy II"]]},"created_time":1689385327067,"last_edited_time":1689390510980,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","version":158,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["10 min."]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:30 AM - 8:40 AM"]],"~Dke":[["8:30 AM"]],"title":[["Introduction to keynote"]]},"created_time":1687804872919,"last_edited_time":1689390517374,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","version":418,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Diane Shader Smith"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:40 AM - 9:40 AM"]],"zo?d":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:40"]],"title":[["Keynote TBA (Phage therapy patient/parent experience)"]]},"created_time":1687804875083,"last_edited_time":1689390533282,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","version":277,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jessica Sacher"]],"PvYj":[["Yes"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["9:40 AM - 10:00 AM"]],"zo?d":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940"]],"title":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},"created_time":1687803978208,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","version":339,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Toronto"]],"LQJ@":[["Greg German"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:00 AM - 10:20 AM"]],"zo?d":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["10"]],"title":[["TBA (Phage therapy experience in Canada)"]]},"created_time":1688514223660,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","version":90,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10:20 AM"]],"title":[["Break"]]},"created_time":1688510819582,"last_edited_time":1689390856637,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","version":440,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"LQJ@":[["Talk - Chris Shafer "]],"PvYj":[["No"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:40 AM - 10:55 AM"]],"zo?d":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1040"]],"title":[["TBA (Patient experience)"]]},"created_time":1688870878668,"last_edited_time":1689390547176,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","version":272,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["5 min"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:55 AM - 11:00 AM"]],"~Dke":[["1055"]],"title":[["Introduction to keynote"]]},"created_time":1687804891380,"last_edited_time":1689390854168,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","version":295,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["[Keynote] Steffanie Strathdee"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["11:00 AM - 12:00 PM"]],"zo?d":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["11am"]],"title":[["TBA (Phage therapy experience in San Diego)"]]},"created_time":1687824627233,"last_edited_time":1689390550195,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","version":96,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687824632680,"last_edited_time":1689391227320,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","version":41,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"title":[["Session 6: Understanding & improving phage therapy"]]},"created_time":1689385344622,"last_edited_time":1689390887337,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3918b591-a398-4a45-a808-38c6d79323c3","version":251,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["Katrine Whiteson"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:05 AM"]],"title":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},"created_time":1687824774421,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"11b1742c-9e64-4811-a371-6bf962e05694","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"LQJ@":[["Sabrina Green"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},"created_time":1687824793158,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","version":361,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"LQJ@":[["Kevin Burke"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["140"]],"title":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},"created_time":1687803973490,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","version":210,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"LQJ@":[["Tiffany Luong"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["155"]],"title":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},"created_time":1687825345820,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","version":466,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"LQJ@":[["Magdalena Unterer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220-235"]],"title":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},"created_time":1687799421442,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","version":298,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Rime Bioinformatics SAS, Palaiseau, France"]],"LQJ@":[["Antoine Culot"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:25 PM - 2:40 PM "]],"zo?d":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},"created_time":1689241721977,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","version":249,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Jiemin Du"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:40 PM - 2:55 PM"]],"zo?d":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["225-240"]],"title":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},"created_time":1687824771581,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["2:55 PM - 3:15 PM"]],"~Dke":[["240"]],"title":[["Break"]]},"created_time":1687824801783,"last_edited_time":1689390566824,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","version":172,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"LQJ@":[["Susan Lehman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:15 PM - 3:35 PM"]],"zo?d":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3:00"]],"title":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},"created_time":1687825464297,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","version":243,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"LQJ@":[["Katarzyna Danis-Włodarczyk"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:35 PM - 3:50 PM"]],"zo?d":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},"created_time":1687804889505,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","version":225,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"LQJ@":[["Qingquan (Kevin) Chen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:50 PM - 4:05 PM"]],"zo?d":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["335-350"]],"title":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},"created_time":1688514225625,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","version":268,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"LQJ@":[["Gregory Resch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:05 PM - 4:25 PM"]],"zo?d":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},"created_time":1687824778489,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","version":341,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Paul Bollyky"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:25 PM - 4:45 PM"]],"zo?d":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM -10:05 PM"]],"title":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},"created_time":1687824776474,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","version":66,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687825706407,"last_edited_time":1689391232151,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","version":111,"type":"page","properties":{";:c\\":[["Tuesday"]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 7:00 PM"]],"~Dke":[["6:00 PM - 7:00 PM"]],"title":[["Informal Poster session "]]},"created_time":1687825710832,"last_edited_time":1689390577528,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","version":504,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["120 min"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"LQJ@":[["Evergreen Chronology of Inspiration Panel"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},"created_time":1687825713435,"last_edited_time":1689390587466,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","version":100,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9 PM - ?"]],"title":[["Celebration/Dancing"]]},"created_time":1687825714716,"last_edited_time":1689390835462,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","version":51,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 7: Phage and the immune system"]],"title":[["Session 7: Phage and the immune system"]]},"created_time":1689385364350,"last_edited_time":1689390824571,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","version":226,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, USA"]],"LQJ@":[["Dwayne Roach"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},"created_time":1687803976098,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","version":173,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"LQJ@":[["Krystyna Dabrowska"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:50 AM - 9:10 AM"]],"zo?d":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["850"]],"title":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},"created_time":1687803197335,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","version":177,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Philip Lauman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:10 AM - 9:25 AM"]],"zo?d":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["910"]],"title":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},"created_time":1687825352404,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","version":236,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["College of Life and Environmental Sciences, University of Exeter"]],"LQJ@":[["Meaghan Castledine"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:25 AM - 9:40 AM"]],"zo?d":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["925"]],"title":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},"created_time":1687804887674,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","version":198,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Léa Zinsli"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:40 AM - 9:55 AM"]],"zo?d":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["210"]],"title":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},"created_time":1687824768936,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","version":303,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"LQJ@":[["Thomas Smytheman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:55 AM - 10:15 AM"]],"zo?d":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940-955"]],"title":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},"created_time":1687825475724,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"944c9a63-de56-4d06-b8cd-06558125646e","version":155,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"pjT:":[["10:15 AM - 10:35 AM"]],"~Dke":[["955"]],"title":[["Break"]]},"created_time":1688512417106,"last_edited_time":1689390828482,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","version":35,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"title":[["Session 8: Molecular phage biology I"]]},"created_time":1689385380738,"last_edited_time":1689390817548,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"LQJ@":[["Vivek Mutalik"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:35 AM - 10:55 AM"]],"zo?d":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:25 AM"]],"title":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},"created_time":1687799457743,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e149194-e542-4204-8062-fd608eec8872","version":249,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Enea Maffei"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:55 AM - 11:10 AM"]],"zo?d":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},"created_time":1687803193040,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","version":327,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Carmen Gu Liu"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:10 AM - 11:25 AM"]],"zo?d":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},"created_time":1687825727042,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","version":350,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"LQJ@":[["Jordan Romeyer Dherbey"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:25 AM - 11:40 AM"]],"zo?d":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["150"]],"title":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},"created_time":1687803195265,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["10 min."]],"B:Eq":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"LQJ@":[["Bani Mallick"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:40 AM - 11:50 AM"]],"zo?d":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["930-945"]],"title":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},"created_time":1687825724713,"last_edited_time":1689390622730,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","version":42,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687825725697,"last_edited_time":1689391247104,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","version":61,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"LQJ@":[["Chair: Michael Koeris"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"title":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},"created_time":1689385397612,"last_edited_time":1689390775948,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","version":418,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"LQJ@":[["Michael Koeris"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["355"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825471094,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","version":190,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["PhagePro, Inc"]],"LQJ@":[["Minmin Yen"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["410"]],"title":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},"created_time":1687825467340,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","version":239,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Locus Biosciences"]],"LQJ@":[["Nick Conley"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["425"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825472550,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","version":298,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Dominic Sauvageau"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["440-455"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825477708,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","version":193,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["2:05 PM - 5:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1688513391651,"last_edited_time":1689390780669,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","version":175,"type":"page","properties":{";:c\\":[["Wednesday"]],"Mf`v":[["TBA"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 7:00 PM"]],"~Dke":[["5:00 PM - 7:00 PM"]],"title":[["Dinner (TBA)"]]},"created_time":1688513047039,"last_edited_time":1689391243919,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","version":233,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["Formal Poster Session/Mixer I"]]},"created_time":1688513045165,"last_edited_time":1689390784399,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","version":114,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:30 PM - ?"]],"~Dke":[["6:30 PM - ?"]],"title":[["Phage sculpture building"]]},"created_time":1688881537706,"last_edited_time":1689390731272,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7781829a-04c3-488d-8c00-67cbfa195279","version":72,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9:00 PM - ?"]],"title":[["Dancing "]]},"created_time":1688513043334,"last_edited_time":1689390786731,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","version":56,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"title":[["Session 10: Ecology & Informatics II"]]},"created_time":1689385411869,"last_edited_time":1689390736908,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ac725466-3339-4427-9079-434d80ade7b9","version":319,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"LQJ@":[["Ryan Cook"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220"]],"title":[["TBA (Phage ecology)"]]},"created_time":1688512414351,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","version":386,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Leicester"]],"LQJ@":[["Sophie Harrison"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:50 AM - 9:05 AM"]],"zo?d":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["235"]],"title":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},"created_time":1688512411541,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"LQJ@":[["Michael Shamash"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:05 AM - 9:20 AM"]],"zo?d":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1115"]],"title":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},"created_time":1687825730087,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","version":290,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Martha Clokie"]],"PvYj":[["No"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:20 AM - 10:20 AM"]],"zo?d":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["TBA"]]},"created_time":1688514593287,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","version":160,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10"]],"title":[["Break"]]},"created_time":1688088803519,"last_edited_time":1689390791508,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5489e88d-538f-4a44-804d-ee83ee558203","version":69,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"LQJ@":[["Chair: Hany Anany & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"title":[["Session 11: Phage in food and agriculture"]]},"created_time":1689385433340,"last_edited_time":1689390765437,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2e95f701-433d-46d7-b576-3763b363edf7","version":232,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["KU Leuven, Belgium"]],"LQJ@":[["Jeroen Wagemans"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["10:40 AM - 11:00 AM"]],"zo?d":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1030"]],"title":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},"created_time":1688512255481,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","version":228,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Research Scientist"]],"LQJ@":[["Hany Anany"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:00 AM - 11:20 AM"]],"zo?d":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1050"]],"title":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},"created_time":1688512253803,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","version":245,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"LQJ@":[["Thomas Denes"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:20 AM - 11:40 AM"]],"zo?d":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1110"]],"title":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},"created_time":1688512251773,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","version":257,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["SCIPHAGE"]],"LQJ@":[["Viviana Clavijo"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1125"]],"title":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},"created_time":1687825723153,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","version":90,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1688088805159,"last_edited_time":1689391256910,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","version":40,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"title":[["Session 12: Molecular phage biology II"]]},"created_time":1689385453912,"last_edited_time":1689390755122,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","version":225,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"LQJ@":[["Katharina Höfer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1pm"]],"title":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},"created_time":1687799450907,"last_edited_time":1689390664639,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"581507dc-533e-4600-9215-03f0e000393d","version":329,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Janine Bowring"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},"created_time":1687825728292,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","version":294,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"LQJ@":[["Rebecca Quinn"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["205"]],"title":[["Phage tRNAs Subvert Host Resistance"]]},"created_time":1687799408892,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","version":222,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"LQJ@":[["Valentina Andrea Floccari"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["845"]],"title":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},"created_time":1687825727796,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","version":248,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, University of Idaho"]],"LQJ@":[["Tracey Peters"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:05 PM - 2:20 PM"]],"zo?d":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["915"]],"title":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},"created_time":1688512649947,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","version":310,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Department of Medicine, McMaster University"]],"LQJ@":[["Gayatri Nair"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:20 PM - 2:30 PM"]],"zo?d":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9"]],"title":[["Biasing Bacteriophage Behaviour"]]},"created_time":1687799452995,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","version":267,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"LQJ@":[["Jieting Lin"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:30 PM - 2:40 PM"]],"zo?d":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1140-1155"]],"title":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},"created_time":1688878455809,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:40 PM - 2:55 PM"]],"~Dke":[["250"]],"title":[["Closing Remarks / Future Meeting"]]},"created_time":1688514591043,"last_edited_time":1689390673609,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","version":255,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:05 PM - 5:00 PM"]],"title":[["Formal Poster Session/Mixer II "]]},"created_time":1688088808511,"last_edited_time":1689390674834,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","version":261,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:00 PM - 5:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},"created_time":1688088811059,"last_edited_time":1689390678171,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","version":183,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Mf`v":[["Olympia"]],"R\\:D":[["Social/Fun!"]],"pjT:":[["5 PM - 9:00 PM"]],"title":[["Adventure out into Olympia for dinner and an evening on the water. "]]},"created_time":1688513305939,"last_edited_time":1689390724489,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c39de849-001b-4ae2-866a-68f4655eed15","version":84,"type":"page","properties":{";:c\\":[["Friday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"R\\:D":[["Social/Fun!"]],"title":[["Mt. Rainier hike!"]]},"created_time":1689388334090,"last_edited_time":1689390721716,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":201,"visible":false,"property":">>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"FmK{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"fb24f8e8-7c0e-4774-8d4f-6bec35029c13","version":292,"type":"table","name":"For copying to final","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":225,"visible":true,"property":">>Gm"},{"width":124,"visible":true,"property":";:c\\"},{"width":285,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"pjT:"},{"width":286,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":159,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","version":818,"type":"table","name":"Sorted by name","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":176,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zo?d"},{"width":194,"visible":true,"property":">Gm"},{"width":121,"visible":true,"property":"<\\t`"},{"width":200,"visible":true,"property":"R\\:D"},{"width":372,"visible":false,"property":"_HTj"},{"width":200,"visible":false,"property":"Mf`v"},{"width":200,"visible":false,"property":"pjT:"}],"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"page_sort":["80d7da9f-82c3-406e-9741-bcc1b9cff1a9","b8f20d87-b39a-4064-a023-6abfca157c88","3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","e86b039d-5c7a-4e4d-8623-a6b08cb24a48","320fbd52-2c2b-475f-b2da-07864683da29","5ff3d332-073e-4c93-b127-e69f9df169d5","d179a076-b691-46ad-a752-ce32dfa11bcd","1dda772e-1e87-4a0c-a582-a191ff304204","b8eee1a0-1cc3-42fd-8b29-ff4e3c581d19","26108f23-c750-4058-b26f-8420fb7748a3","73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","1d704fe9-bd23-4fb7-9d74-a974c65e2244","bf7b51df-bfff-459b-85dc-ff4fc776c9aa","7cf59d05-a856-4633-978a-a56a880f0cf8","455e36c6-1fcc-41db-89d5-4e5a959c349a","dd04346a-c48c-4d7c-89ac-5e1920576bfa","1d996c31-e552-4e3f-86d5-681bd1884843","75dc8c11-862a-498b-8cea-c14a7c6a18e9","dff47c86-ccda-4517-adbb-34074ba2ffa4","58ca3e2e-cbc1-43a5-a9bf-710bc2264a6f","fea14a8b-2951-4dff-acac-14de4789184d","3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","07279636-6443-4a25-abd5-07a40b1882c9","ba3bfc5f-241c-49ce-ae27-2ba7527b27d6","d5e79306-ddfc-4d96-9ebd-47eaec869c27","cfecf9c5-fd50-4930-9264-2f7c3726672d","b0a8cfd9-bf0f-4696-9bdd-b0b05d7cec71","9914254b-f117-427d-a18e-942c13978d1a","a82c044e-1394-4475-92bf-9c43e718a38c","3918b591-a398-4a45-a808-38c6d79323c3","c556f9b3-2a23-4bf2-a7cd-fff5434f949a","d0c49619-86e8-43cd-9df3-86dd7c1c1d1d","4c230034-857b-4aff-b554-3cf22b957cdd","8d47b39b-636b-47a2-ac35-5f3051689147","25b27f0c-aa35-4926-b595-208c5231130e","148eaf01-e456-4435-9314-0066f1d2d6de","7916e9a3-6952-4d49-83b8-2e697415d72a","b7abe37a-8c9c-4efc-83a8-0ccc36de5d1d","bfb853d9-b1e6-481a-970e-6c100c0f16c7","21b8ee51-3565-496e-84ff-8782203c072c","b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","c67fb2e5-b1ab-4d56-af58-d8d56db18c88","e693a814-7ac1-4664-b3c2-cee5d3549c5a","a37f9cb1-3d9d-459a-a1c4-68bf475ea444","b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","9c167305-10ba-4b34-a092-7a5ea13239b4","d2710181-6321-4d71-88c7-5f049d2dfd57","ee3dcdd1-d7bc-4809-9caf-ce8bec318384","d36485a7-d749-4512-a97f-8a64bdec62f4","43b54100-7643-4867-8231-1727a947cd4d","9d48e9c9-260f-41b2-a21e-9441bab74ca0","e3f09768-d770-415c-b768-b8278b5482a0","87fe14a6-6042-483b-8261-a3d7a9596298","dab8ef42-154f-4e4b-b34a-7da4616f7368","edfe4fce-28e9-4b98-a80a-6cf3afa53856","4e149194-e542-4204-8062-fd608eec8872","cdb99eef-cdbd-4aaa-a678-dc089739c335","e15b3ca5-974f-4409-a879-31857807f86e","8963ee06-88f2-4f4b-a3cf-5e6ee6244bd6","394bdbe9-ca41-4113-b5e0-1fc9729d0e11","cfde895b-a32e-4fef-8c75-85755601e11d","d72b0b26-a76a-426b-aec4-8c87f84ed27f","50505d83-a8c8-460e-a976-4f53b6e15dff","c26cd957-9549-41af-ab46-126152046e11","4b93b494-6ace-4fe2-91ae-5a11a4b2698f","16678ca8-1e8a-497e-a3d2-bf8edab31a3b","e992eab2-5475-424e-abaa-de0736c4c3c5","26cddb2d-015e-4a96-a665-5c3ae68f958f","634cc05d-293e-4549-a903-dfb8d19b9e4b","f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","20917259-a2cf-40c9-a72e-3374fe2062ea","5415f867-573e-4b4d-bfc0-e3581989dbe5","d2e78427-4fb8-4a28-95c9-b30cb1f509f5","bf6fe550-9932-4e46-ba29-7745a0608549","8bcad3aa-f2d4-4f61-895f-ad066706dfca","30efc624-9c89-4337-a70d-a427146c730b","6a8181aa-972a-4e87-b78f-30f05a5f7387","b5683451-84aa-4bd7-a17d-b370db7980be","138df2d1-4629-4211-9ea0-396f458d2b4c","5499e98a-832c-4a8c-aba1-ec1d9f57292b","a3cd60e9-c694-46fe-a631-f24b44da1cdc","fcead5f3-6947-423d-8683-0c65e83ed8f9","5ba12c78-37ec-4f42-8ed9-e8b1b4abca41","375dd916-026d-4e76-9f86-89ba2d2482f3","c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","45e610f2-5dab-4cf8-8976-62ef58f65417","25bad495-34fe-4db7-b879-f92f359edb71","229860cd-cae1-483d-9476-14ce608bc0ab","d04deead-44b9-4e15-97ff-af4faac462b8","3b540bde-6c3d-4c1a-b7bb-682eba1404df","21dfef19-a016-4520-bc9a-6eaac35c0123","d8b23bc3-90e8-4486-8eb3-8287563d77af","c297bc53-3c36-45af-95b9-867bd1763528","b3af1c11-d888-4292-b1c9-49004d6d90bd","a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","7e3d2dd1-b680-4c11-bfe5-f5f9510a099b","eaf6242a-4ccc-42d0-9df4-64516ae6da10","bd7f78f0-9879-4a81-9843-020c0aedb8bf","15501ed4-0d22-4449-bc23-74bf5e810fe5","cd74805b-8867-46ba-bf38-b8b720f697a8","8927a91f-eff6-42c1-9dd8-0fc959c0feee","ab6c1c7f-e4dc-4292-a336-a8aeeeea5231","947742f7-73c1-4b7d-b535-14fe28df6455","ca2f9f2d-3cc0-4add-92e4-24d4b79b4811","bff2728f-9ccd-4f6d-80a0-bde174b96ac7","8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","9919ea53-db46-44e6-b90a-37dac36054a2","abb3181f-8478-447e-8ef4-4f798c674ac0","f423b719-8bc2-446a-af8f-fe6cedc5db93","1cf907e2-8eef-44ff-8381-1aeba6f6fe20","c2c58aff-b2bd-478e-a740-d4959d9ac154","ed30e6f6-7c05-4756-a13f-a8d83d34bec6","11b1742c-9e64-4811-a371-6bf962e05694","2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","1cef6663-9aaf-4d01-a450-e5e863af04b8","3b88ee39-8868-4cfb-83bb-1f234e16724d","dc003b5e-bd14-4150-af35-cf1eca003e13","c0de3776-ede0-4c30-be88-288a19604379","dbb449a2-7df2-4821-a94d-400b65aed1e0","0a75393a-f05c-441a-b978-0b033e7b3dcb","a3a8dd50-043c-4586-9e6a-165dae46e7cd","1efe468a-0193-4078-a1b4-66c36ef05846","a42cc434-71a4-47e5-8950-2ff2d585e4bc","d1569dba-23b6-46a0-9556-b71ff0727e26","a259cd5d-0a45-40d2-98d7-afb774a00554","4180d7bc-d11f-4d4f-be7b-801320cf94aa","cfc42d63-ec72-443e-a1e0-7cd15cd1b6b2","6bfdf00f-db69-4def-ab47-e13a8cd7b673","6028f4b4-f271-472c-a2c8-acb11caa3fff","60a853d5-098c-4f34-b9dd-46a58efe5216","c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","67f94fd5-db64-4d62-bea2-987fa2be2f69","c1b92230-2e51-412e-8149-d83f131e77e7","f09da0ac-5747-44e4-bf6a-4291fee3d9a2","1bb96063-db6c-4cbe-af69-2d00c6a7b369","2216cb44-05b3-490e-84e6-f928b4ed2aef","276d1e16-7a7c-4552-b2a5-6425ef44907b","5df0843e-6388-403c-aff3-0fd826eb55bf","e23c80b4-93af-47c4-a213-c2fdf3d919bf","d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","2dc746fa-8f4f-423d-ab3b-646834be8e8a","be032e3f-6934-41cb-82dc-c1c6f47f5142","f3b72cc7-1135-4121-bb1a-e14befc8eb4f","b706798a-20fd-460d-b182-3528d57c3743","3137dcf5-8634-4567-825e-b680eba551d9","1a64bcc6-373d-4d33-a78b-82fa0e1d2c21","6c056d5a-a4aa-423f-ac4e-5da45899f8c3","d8b88202-9bbb-4794-a41c-ade28f86ec79","f695b133-d79e-4a28-806a-c7816b2b20e5","8f11570b-97d7-432c-9e08-8d81c364a9bd","cba0e342-eb23-490d-bcb3-5ad702ffe616","ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","14d54749-63ad-4780-8bf0-bfd9ed9db335","a1307bb9-ff3e-4f34-a82b-0f00e80bb259","ca5acf7a-8883-4fdd-8645-c20d646b6ea4","944c9a63-de56-4d06-b8cd-06558125646e","1dbba8a9-1e44-443d-b3f5-1215cb7684c7","d78d4962-bc5b-465f-8021-218e20f5fc7a","29cbb222-2f1b-4e94-9906-136598c6a36e","8c311bef-4951-42b3-af2b-64f4b1a8533b","9c16ce62-0fa0-40bc-9aa0-33562495d8e0","0be688d3-4b95-466c-99c7-1e10555047ca","435f531a-0c04-4507-8cdd-8ab2ba2098a6","29178e11-4d8e-4bfb-a185-ad6ef228be55","8a299808-90ad-4a99-a961-487a74113602","20593fb1-7b98-4ad4-b665-bd51d17ea110","76c088a7-e1d9-4cf3-8c2a-a089d5872a73","8e803c64-fa50-43d5-8b56-3166792858c6","921231f0-8471-4717-872a-ed53c83b9150","4599af88-8851-4ad4-9120-ac7720b2a9b0","6148d44a-7933-4d98-8ce1-d22be7db73d1","ca9891b7-6b3d-4afe-a3b4-37e49274f963","220244b9-e22e-4c55-921e-2f2d98fa01a0","4a5045e7-0d9c-44bc-b079-8a0f32dc2ab8","df60a7dd-daaa-4aae-ad38-a8977ae8223c","b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","27a95a36-f080-43c2-8b8c-1a10c814f35a","fbae94a2-65d1-4db9-b48e-eb296215e7d3","ddafcc94-0025-4912-9da6-2bd214d70984","97f6e680-6894-4879-aae5-2d099a0439fe","2550fd85-0e8c-40bf-aa42-30b6fe394df3","9af07187-e2f0-4dca-9f87-175ecc1c41ea","c9a4078e-fec0-4a47-8779-2552487e4143","71950354-ce16-4acb-9537-926885811e17","bf482d4d-f2b1-4160-99bb-9ded585ff518","a68d9e08-8804-41ae-88f3-af9fc9f52b6a","cde43b84-f7b5-4076-b0fa-d9883edbe118","949bdd60-dd5d-4871-9248-16183ae117bb","9d80a5a4-f80a-4344-86c1-fffe5724a93f","0d914c29-ad5e-4682-9eb5-cccd8b35d156","15e8b124-9e95-4d7d-937d-a7448126d443","789fff4a-31ae-4724-8214-cbad2a03bc6c","c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","37f64d6c-856a-45d4-ae1c-787aa2eaac29","a604a22d-e533-4b87-bb55-09adc2af00ca","7781829a-04c3-488d-8c00-67cbfa195279","c7139154-3923-4dee-8181-a6243de4c976","f3ac9766-0302-4522-906d-45ad7a8ea060","2b86d329-32b9-4e95-8c15-fe6ea90ef4eb","a3ff1019-73c2-46ef-a917-0c749dc7a66b","ac6cc1d7-0745-47fd-9b87-84c63329039f","581507dc-533e-4600-9215-03f0e000393d","5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","471524da-ac95-4e70-834e-cad6e07afe1f","8db54920-85c2-457c-9ba7-9901243cfbbc","bf1e263f-818f-4196-ab92-7167aeedecf8","e888c902-3fb5-4e97-9db4-39c540023ab7","f2624eb4-9955-441d-870a-86d77cfc9f29","a6427d07-59df-4500-89bf-63153e845c67","2e95f701-433d-46d7-b576-3763b363edf7","d8bc49a0-033d-43f7-a57c-e3a267f55879","4e34ad83-a93f-4fad-a000-625e1e7ce92a","182fb594-883e-45ca-9b0a-f7dfb57f2ba7","26eaaf74-61d5-4b57-a7c1-d644e164302e","bb0c3590-afbe-4528-aba6-bda243798293","2c5431f2-8923-4b9b-adfb-344533552bdd","3f82ea9d-6118-49b3-a167-cdab2fe82497","ce6df1d4-f38a-4649-bc2c-b847e48b5056","e2a17874-e8e5-44fe-aff2-f2cb9c56098a","aa5cf4e8-a847-4cd3-80a2-ee1de8369ce4","a22b1812-888d-4ad8-8e0c-40ed5be324d4","fe40b9d7-4313-43be-82cc-2d57a0cdb61b","12d07a36-a3c7-49cc-8fe3-63d060d04339","86f3cc7b-6590-4819-9f87-95ec5c6c6c1d","6e778f3a-e16d-4970-a3af-0b7dddb43b64","e79b83e8-55bc-4750-b4f7-9646647d8d19","1a56df20-9634-4e16-873a-db82c54b9d48","7b0e1ccd-df28-481e-9d87-3d9838200395","6f7a547e-f143-4997-8363-808723cadb92","ee186a6d-8647-4202-8f1d-516c4d4229dc","1d86cd3c-e014-46e0-8f73-0e70d4287cd5","85295232-d496-49cd-89d6-30495d7e4cb4","6ce6f053-2c4b-4987-bf3c-d2a5ec03ecf2","3d79767d-be48-4947-ab26-bf43ae1451bd","990dd017-90eb-4940-b5e4-9ac8e5f2562c","e4122488-d85f-4ea0-a801-2c23a9312574","dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","54c930a8-c75b-4cbb-91d1-ab759487c9a3","ac725466-3339-4427-9079-434d80ade7b9","d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","bd297533-496f-4d20-b81f-7ad4e0756397","3ee8e07b-eea3-4939-9055-6aff48e3e51a","a96898de-d384-45ec-961c-8f01fdb5dc73","32e0ad0e-d72f-48f0-bba4-6a3707604aaa","4007bf81-b00e-4750-b851-7ec471273bf2","40aeedb7-0877-478c-b4e4-49395f7b26cf","8673752a-79a8-4568-8deb-571cd6aab24d","69f8b658-9cfb-407d-90c6-3efc9b96835b","3e3afdd9-5775-4d05-9b9a-6bf8d515fc04","f91d821b-f4af-4f98-9c77-967120c13514","77203aa4-43b9-4b93-97bf-b1cbae4e14eb","76add0fa-5b7d-4d47-a705-8228c7a6d146","fa33325b-d6dd-4fe4-9a1f-dd7db6d78f95"],"query2":{"timeline_by":">>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"5537f8ba-2f92-467f-aca5-d43a0e59d6ab","version":32,"type":"calendar","name":"","format":{"table_properties":[{"width":308,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"=WD`"},{"width":200,"visible":true,"property":"~Dke"},{"width":329,"visible":true,"property":">>Gm"}],"calendar_properties":[{"visible":false,"property":"zo?d"},{"visible":true,"property":"R\\:D"},{"visible":true,"property":":iJn"},{"visible":true,"property":">>Gm"},{"visible":false,"property":"pjT:"},{"visible":false,"property":"_HTj"},{"visible":false,"property":"PvYj"},{"visible":false,"property":"<\\t`"},{"visible":false,"property":"=WD`"},{"visible":false,"property":"B:Eq"},{"visible":false,"property":">Gm","timeline_by":">>Gm"},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"be03b38d-8ecb-4ecf-84b2-d84948b9ed6f","version":23,"type":"table","name":"Chronological","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":228,"visible":true,"property":"title"},{"width":225,"visible":true,"property":">>Gm"},{"width":279,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"zo?d"},{"width":163,"visible":true,"property":"=WD`"},{"width":179,"visible":true,"property":"~Dke"},{"width":200,"visible":true,"property":"pjT:"},{"width":539,"visible":true,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/b889be648455af7dccfef7263a7e3f94fe1d41082aa74467f9ca0e85a753a7aa00004759c6f0e364 b/.wrangler/state/v3/cache/default/blobs/b889be648455af7dccfef7263a7e3f94fe1d41082aa74467f9ca0e85a753a7aa00004759c6f0e364 new file mode 100644 index 0000000..7eebbf8 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/b889be648455af7dccfef7263a7e3f94fe1d41082aa74467f9ca0e85a753a7aa00004759c6f0e364 @@ -0,0 +1 @@ +{"05a1da7b-00e7-4cdd-9410-7e9480eb4a77":{"value":{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","version":178,"type":"page","properties":{"{jf|":[["Main"]],"title":[["🚧 Web site under construction 🚧"]]},"content":["3d184599-7677-440d-8d57-52218ad0174e","95fb086d-66fd-4c83-8730-2c3c0dbf6a55","7517155b-5293-41a8-b67e-0083872f800c","db27b977-5fbb-4093-8cbc-2f0b6f1dda17","b3caa4aa-8006-4928-a303-eb51673b6e01","31060ed1-7355-4165-aba1-1212f0a5400d"],"format":{"copied_from_pointer":{"id":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117950,"last_edited_time":1689508751743,"parent_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","parent_table":"collection","alive":true,"copied_from":"31f7e76e-bd9a-4825-80c1-3fc6ecad84e2","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"dff5d33f-c8de-49c6-b57e-9dee74c51e8c":{"value":{"id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","version":40,"type":"collection_view","view_ids":["c299b379-0b56-4221-a665-8401546223f6"],"collection_id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","format":{"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"copied_from_pointer":{"id":"cf47d2d7-fc40-4e8b-b019-18eb9b53e4b7","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117985,"last_edited_time":1689509987350,"parent_id":"bc1b9d83-c82d-48e3-bed9-8e05ad55e942","parent_table":"block","alive":true,"copied_from":"cf47d2d7-fc40-4e8b-b019-18eb9b53e4b7","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["blogalog homepage db"]],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"types":[{"id":"c299b379-0b56-4221-a665-8401546223f6","version":2,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|"},{"wrap":false,"width":222,"visible":true,"property":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x"},{"wrap":false,"width":100,"visible":true,"property":"nxhL"},{"wrap":true,"width":100,"visible":true,"property":"CzHM"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\"},{"wrap":false,"width":100,"visible":true,"property":"BOur"},{"wrap":false,"width":100,"visible":true,"property":"SJm?"},{"wrap":false,"width":100,"visible":true,"property":"qH[K"},{"wrap":false,"width":200,"visible":true,"property":"VZAs"},{"wrap":false,"width":200,"visible":true,"property":"UdGI"},{"wrap":false,"width":200,"visible":true,"property":"nnr{"},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","Content":[["blogalog.net"]],"Name":[["username"]]},{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","Content":[["Blogalog"]],"Name":[["Author"]]},{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","Content":[["@blogalog.net"]],"Name":[["TwitterHandle"]]},{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","Content":[["Welcome to Blogalog.net, your very own blog on the world wide web"]],"Name":[["SiteTitle"]]},{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","Content":[["Get your very own blog on the world wide web at blogalog.net! "]],"Name":[["SiteDescription"]]},{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","Name":[["SocialDescription"]]},{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","Name":[["SocialLinks"]]},{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","Name":[["Email"]]},{"id":"1434d49f-0826-4dbe-874e-9fa160091306","Content":[["🤩 Get your very own blog on the world wide web at "],["blogalog.net",[["a","http://blogalog.net"]]],["! 🤩"]],"Name":[["Short"]]},{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"]]]],"Name":[["ProfileImage"]]},{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","Files":[["blogalog-cover.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"]]]],"Name":[["CoverImage"]]},{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"]]]],"Name":[["IconImage"]]},{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","Files":[["blogalog-card.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"]]]],"Name":[["CardImage"]]},{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","Content":[["Blogalog 2023 | 🚧 Github link soon 🚧"]],"Name":[["Footer"]]},{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","Content":[["https://blogalog.net"]],"Name":[["URL"]]},{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","Type":[["Main"]],"Name":[["🚧 Web site under construction 🚧"]]},{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","Path":[["blogalog-welcome"]],"Content":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"Categories":[["Working Notes"]],"Type":[["Posts"]],"Name":[["Hello blogalog.net"]]},{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","Type":[["Main"]],"Name":[["What the heck is blogalog"]]}]}},"bc1b9d83-c82d-48e3-bed9-8e05ad55e942":{"value":{"id":"bc1b9d83-c82d-48e3-bed9-8e05ad55e942","version":198,"type":"page","properties":{"CbSI":[["dff5d33fc8de49c6b57e9dee74c51e8c"]],"KeGT":[["‣",[["p","dff5d33f-c8de-49c6-b57e-9dee74c51e8c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"zxl<":[["blogalog"]],"title":[["Blogalog Page"]]},"content":["dff5d33f-c8de-49c6-b57e-9dee74c51e8c"],"format":{"page_full_width":true,"copied_from_pointer":{"id":"07d1e163-d344-4407-b5d4-11a850a33160","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484077164,"last_edited_time":1689489285651,"parent_id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","parent_table":"collection","alive":true,"copied_from":"07d1e163-d344-4407-b5d4-11a850a33160","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"0f9f24f8-2570-4411-86a8-c10d9f788412":{"value":{"id":"0f9f24f8-2570-4411-86a8-c10d9f788412","version":57,"type":"collection_view","view_ids":["ba601f1c-872a-4179-8bb5-bc80646b99bf"],"collection_id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","format":{"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"permissions":[{"role":"reader","type":"public_permission","added_timestamp":1689481196701}],"created_time":1689477856888,"last_edited_time":1689496691127,"parent_id":"bddb327b-78d9-4e90-b58c-0acd696b21d5","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["Blog-a-log List"]],"schema":{"CbSI":{"name":"Pagedata ID","type":"text"},"KeGT":{"name":"Linked Pagedata","type":"text"},"zxl<":{"name":"Slug","type":"text"},"title":{"name":"Name","type":"title"}},"types":[{"id":"ba601f1c-872a-4179-8bb5-bc80646b99bf","version":22,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":207,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zxl<"},{"width":313,"visible":true,"property":"CbSI"},{"width":369,"visible":true,"property":"KeGT"}],"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"Y>Aw"}]},"parent_id":"0f9f24f8-2570-4411-86a8-c10d9f788412","parent_table":"block","alive":true,"page_sort":["bc1b9d83-c82d-48e3-bed9-8e05ad55e942","5301eb0e-59ce-4eb1-b881-2ec7069a724a","8ad364a0-576b-4b77-b071-acce2760240b","07d1e163-d344-4407-b5d4-11a850a33160","d7bfdda6-5885-4763-b74c-a130c769b14a","65cad99e-a6af-43bd-9b53-fb9f3a62ad19","3abb17b2-5d4e-4a77-a2cc-736c73ef5932"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"bc1b9d83-c82d-48e3-bed9-8e05ad55e942","Pagedata ID":[["dff5d33fc8de49c6b57e9dee74c51e8c"]],"Linked Pagedata":[["‣",[["p","dff5d33f-c8de-49c6-b57e-9dee74c51e8c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["blogalog"]],"Name":[["Blogalog Page"]]},{"id":"8ad364a0-576b-4b77-b071-acce2760240b","Pagedata ID":[["78c3b598e05e44d9ae349e03f4758494"]],"Linked Pagedata":[["‣",[["p","78c3b598-e05e-44d9-ae34-9e03f4758494","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["shipyard"]],"Name":[["Shipyard"]]},{"id":"07d1e163-d344-4407-b5d4-11a850a33160","Pagedata ID":[["cf47d2d7fc404e8bb01918eb9b53e4b7"]],"Linked Pagedata":[["‣",[["p","cf47d2d7-fc40-4e8b-b019-18eb9b53e4b7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["jessbio"]],"Name":[["JessBio 2.0"]]},{"id":"d7bfdda6-5885-4763-b74c-a130c769b14a","Pagedata ID":[["419c29dc6d194994a9155a974657f5ad"]],"Linked Pagedata":[["‣",[["p","419c29dc-6d19-4994-a915-5a974657f5ad","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]],[" "]],"Slug":[["janny"]],"Name":[["JanZheng Blogalog"]]}]}},"3d184599-7677-440d-8d57-52218ad0174e":{"value":{"id":"3d184599-7677-440d-8d57-52218ad0174e","version":170,"type":"text","properties":{"title":[["The site is still under construction, be back for more!"]]},"format":{"copied_from_pointer":{"id":"ac395927-519e-4863-a137-745cf112e49d","table":"block","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689484117956,"last_edited_time":1689494653826,"parent_id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","parent_table":"block","alive":true,"copied_from":"ac395927-519e-4863-a137-745cf112e49d","created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"95fb086d-66fd-4c83-8730-2c3c0dbf6a55":{"value":{"id":"95fb086d-66fd-4c83-8730-2c3c0dbf6a55","version":6,"type":"text","created_time":1689508721794,"last_edited_time":1689508722494,"parent_id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"7517155b-5293-41a8-b67e-0083872f800c":{"value":{"id":"7517155b-5293-41a8-b67e-0083872f800c","version":17,"type":"collection_view","view_ids":["edfcb19c-da30-455c-a493-c3997ae9e78d"],"collection_id":"89806d51-e57a-4486-9079-28f8ea0d6e20","format":{"collection_pointer":{"id":"89806d51-e57a-4486-9079-28f8ea0d6e20","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"created_time":1689508726312,"last_edited_time":1689508730081,"parent_id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["some table"]],"schema":{"@Int":{"name":"Tags","type":"multi_select"},"title":{"name":"Name","type":"title"}},"types":[{"id":"edfcb19c-da30-455c-a493-c3997ae9e78d","version":1,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title"},{"visible":true,"property":"@Int"}],"collection_pointer":{"id":"89806d51-e57a-4486-9079-28f8ea0d6e20","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"7517155b-5293-41a8-b67e-0083872f800c","parent_table":"block","alive":true,"page_sort":["5b40fb97-03e8-40a4-8274-9988fdf5ebf7","c420037f-06bc-444d-a95e-313aded8f43f","eedc7567-dd55-46ce-aad2-516111f960d5"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"c420037f-06bc-444d-a95e-313aded8f43f","Name":[["strawberry"]]},{"id":"eedc7567-dd55-46ce-aad2-516111f960d5","Name":[["banana"]]}]}},"db27b977-5fbb-4093-8cbc-2f0b6f1dda17":{"value":{"id":"db27b977-5fbb-4093-8cbc-2f0b6f1dda17","version":6,"type":"text","created_time":1689508744419,"last_edited_time":1689508744779,"parent_id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"b3caa4aa-8006-4928-a303-eb51673b6e01":{"value":{"id":"b3caa4aa-8006-4928-a303-eb51673b6e01","version":55,"type":"text","properties":{"title":[["Here’s a linked table:"]]},"created_time":1689508744419,"last_edited_time":1689508748987,"parent_id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"31060ed1-7355-4165-aba1-1212f0a5400d":{"value":{"id":"31060ed1-7355-4165-aba1-1212f0a5400d","version":3,"type":"collection_view","view_ids":["abc5920b-ec45-44cd-a697-efbd7e875821"],"created_time":1689508751740,"last_edited_time":1689508751743,"parent_id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","parent_table":"block","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader","collection":{"title":[["blogalog homepage db"]],"schema":{"BOur":{"name":"Path","type":"text"},"CzHM":{"name":"Date","type":"date"},"R`]x":{"name":"Content","type":"text"},"SJm?":{"name":"Cover","type":"text"},"UdGI":{"name":"VersionNotes","type":"text"},"VZAs":{"name":"Version","type":"text"},"nnr{":{"name":"Categories","type":"multi_select","options":[{"id":"GXvO","color":"green","value":"Working Notes"}]},"nxhL":{"name":"Files","type":"file"},"qH[K":{"name":"Link","type":"text"},"{jf|":{"name":"Type","type":"multi_select","options":[{"id":"7895d8bf-cf4d-4c60-937c-2e38a77c0ba5","color":"yellow","value":"Test"},{"id":"ac193d60-6b92-42c7-b185-63e2b923d404","color":"pink","value":"woof"},{"id":"8a4a6d3e-0b70-402a-9c94-f977bcd55b33","color":"gray","value":"meow"},{"id":"6811f387-5ba2-4c86-ad21-1e55ede486fd","color":"green","value":"Main"},{"id":"433af6eb-b3b1-43e3-a1d5-84b6551da0d8","color":"purple","value":"Posts"},{"id":"19af9e03-d2b3-4964-937c-67cf1871927b","color":"orange","value":"Case Study"},{"id":"96a58349-40a6-4c2f-84dc-e39faab0c48c","color":"blue","value":"MainPage"}]},"~bt\\":{"name":"_id","type":"formula","formula":{"name":"id","type":"function","result_type":"text"}},"title":{"name":"Name","type":"title"}},"types":[{"id":"abc5920b-ec45-44cd-a697-efbd7e875821","version":3,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title"},{"visible":true,"property":"@Int"}],"collection_pointer":{"id":"89806d51-e57a-4486-9079-28f8ea0d6e20","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"31060ed1-7355-4165-aba1-1212f0a5400d","parent_table":"block","alive":true,"page_sort":["5b40fb97-03e8-40a4-8274-9988fdf5ebf7","c420037f-06bc-444d-a95e-313aded8f43f","eedc7567-dd55-46ce-aad2-516111f960d5"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}],"data":[{"id":"1434d49f-0826-4dbe-874e-9fa160091306","Content":[["🤩 Get your very own blog on the world wide web at "],["blogalog.net",[["a","http://blogalog.net"]]],["! 🤩"]],"Name":[["Short"]]},{"id":"4f2785cc-30d0-4462-b55b-03ec61ec8223","Content":[["@blogalog.net"]],"Name":[["TwitterHandle"]]},{"id":"5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","Files":[["blogalog-cover.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9cfb2a72-12cd-4002-85de-c12e75862fcc/blogalog-cover.jpg"]]]],"Name":[["CoverImage"]]},{"id":"5c487e9d-ef99-4a74-bb29-f29182534ad8","Files":[["blogalog-card.jpg",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/209f6957-47d5-4063-894f-b09b76d1d6fa/blogalog-card.jpg"]]]],"Name":[["CardImage"]]},{"id":"736cd137-a233-4891-a871-a36ffd7f0f16","Content":[["https://blogalog.net"]],"Name":[["URL"]]},{"id":"9eda27cc-ac50-4665-affe-2c7b9d393496","Content":[["Blogalog"]],"Name":[["Author"]]},{"id":"dbd6405c-4206-4939-a2ae-957dbfe985be","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f07768d9-e038-4943-aa73-fbaf70351066/blogalog.png"]]]],"Name":[["ProfileImage"]]},{"id":"05a1da7b-00e7-4cdd-9410-7e9480eb4a77","Type":[["Main"]],"Name":[["🚧 Web site under construction 🚧"]]},{"id":"6ee750d2-0dad-4726-8110-9af53e07f0f8","Content":[["Welcome to Blogalog.net, your very own blog on the world wide web"]],"Name":[["SiteTitle"]]},{"id":"8167c14e-f1ca-4db4-aa60-d0d65f4c3690","Type":[["Main"]],"Name":[["What the heck is blogalog"]]},{"id":"c0247cec-af5c-471f-bd90-88b31d6c260e","Path":[["blogalog-welcome"]],"Content":[["Hello 1997, put on your cargo pants and aviators because we have a BRAND NEW WEB SITE called blogalog.net to show you!"]],"Categories":[["Working Notes"]],"Type":[["Posts"]],"Name":[["Hello blogalog.net"]]},{"id":"8600f00b-1886-48b6-86f7-d10cd11636e1","Content":[["blogalog.net"]],"Name":[["username"]]},{"id":"890e1b05-339f-4f70-a21b-bbb24cee8968","Files":[["blogalog.png",[["a","https://s3-us-west-2.amazonaws.com/secure.notion-static.com/eac514be-bdf2-439b-838d-204d308bd71d/blogalog.png"]]]],"Name":[["IconImage"]]},{"id":"a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","Name":[["SocialLinks"]]},{"id":"d41c153a-a7f7-4390-99b9-b175b15ff3bb","Name":[["Email"]]},{"id":"f7da0a06-5716-4d18-9fe4-c49760a00383","Content":[["Blogalog 2023 | 🚧 Github link soon 🚧"]],"Name":[["Footer"]]},{"id":"7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","Content":[["Get your very own blog on the world wide web at blogalog.net! "]],"Name":[["SiteDescription"]]},{"id":"ce3b2e90-56b5-45b3-9746-b9d8380b9feb","Name":[["SocialDescription"]]}]}}} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/cc67626db70dee865410f1e99d5b9b7d001657e000c5fc148db74dfcd992d5d600004f5947771b93 b/.wrangler/state/v3/cache/default/blobs/cc67626db70dee865410f1e99d5b9b7d001657e000c5fc148db74dfcd992d5d600004f5947771b93 new file mode 100644 index 0000000..cff9bc4 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/cc67626db70dee865410f1e99d5b9b7d001657e000c5fc148db74dfcd992d5d600004f5947771b93 @@ -0,0 +1 @@ +{"rows":[{"id":"8902111b-71f7-4cd6-a3e0-8310802f0ba8","Name":"peter"},{"id":"e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","Name":"jasper"},{"id":"6ee8139d-3ca4-4349-9dd6-600f95183e50","Name":"woof"}],"schema":{"@I]j":{"name":"Tags","type":"multi_select"},"title":{"name":"Name","type":"title"}},"name":"rabbits","tableArr":[{"value":{"id":"8902111b-71f7-4cd6-a3e0-8310802f0ba8","version":12,"type":"page","properties":{"title":[["peter"]]},"created_time":1689509699048,"last_edited_time":1689509704576,"parent_id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","version":14,"type":"page","properties":{"title":[["jasper"]]},"created_time":1689509699048,"last_edited_time":1689509708565,"parent_id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6ee8139d-3ca4-4349-9dd6-600f95183e50","version":10,"type":"page","properties":{"title":[["woof"]]},"created_time":1689509699048,"last_edited_time":1689509725934,"parent_id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":276,"visible":true,"property":"title","name":"Name","type":"title"},{"visible":true,"property":"@I]j","name":"Tags","type":"multi_select"}],"collection":{"value":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","version":9,"name":[["rabbits"]],"schema":{"@I]j":{"name":"Tags","type":"multi_select"},"title":{"name":"Name","type":"title"}},"format":{"collection_page_properties":[{"visible":true,"property":"@I]j"}]},"parent_id":"808463d9-298c-42df-9a63-f6067de8bd95","parent_table":"block","alive":true,"migrated":true,"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},"sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"views":[{"id":"3ecce580-8344-42b7-96c5-5b9de945a31d","version":1,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":276,"visible":true,"property":"title","name":"Name","type":"title"},{"visible":true,"property":"@I]j","name":"Tags","type":"multi_select"}],"collection_pointer":{"id":"85a1dee4-59a6-48fc-a5bc-a6d8531ac269","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"808463d9-298c-42df-9a63-f6067de8bd95","parent_table":"block","alive":true,"page_sort":["8902111b-71f7-4cd6-a3e0-8310802f0ba8","e997a14f-f9b9-4dc4-b7e3-4b2ed540f9d6","6ee8139d-3ca4-4349-9dd6-600f95183e50"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"c299b379-0b56-4221-a665-8401546223f6","version":2,"type":"table","format":{"table_wrap":false,"table_properties":[{"wrap":true,"width":100,"visible":true,"property":"{jf|"},{"wrap":false,"width":222,"visible":true,"property":"title"},{"wrap":false,"width":409,"visible":true,"property":"R`]x"},{"wrap":false,"width":100,"visible":true,"property":"nxhL"},{"wrap":true,"width":100,"visible":true,"property":"CzHM"},{"wrap":false,"width":316,"visible":false,"property":"~bt\\"},{"wrap":false,"width":100,"visible":true,"property":"BOur"},{"wrap":false,"width":100,"visible":true,"property":"SJm?"},{"wrap":false,"width":100,"visible":true,"property":"qH[K"},{"wrap":false,"width":200,"visible":true,"property":"VZAs"},{"wrap":false,"width":200,"visible":true,"property":"UdGI"},{"wrap":false,"width":200,"visible":true,"property":"nnr{"},{"visible":true,"property":"xOrL"}],"collection_pointer":{"id":"4c5375b2-34ac-48e6-b11a-822cfd16a25e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"dff5d33f-c8de-49c6-b57e-9dee74c51e8c","parent_table":"block","alive":true,"page_sort":["d8ebf362-63cf-41b6-a019-66e26ac8e21b","af6c8c8e-5b7a-4646-942e-ae7e7af03e0a","8e0fb8f8-5c93-4600-9a04-fe3e673a35a6","60794889-12e5-484e-a9d1-70ab7b51a799","8600f00b-1886-48b6-86f7-d10cd11636e1","b619bf36-c430-46c8-b4e3-8553f96a0bf8","ed95fdca-499c-40ab-87b6-3a8dec0c7c2e","9eda27cc-ac50-4665-affe-2c7b9d393496","4f2785cc-30d0-4462-b55b-03ec61ec8223","6ee750d2-0dad-4726-8110-9af53e07f0f8","7b67d2b8-8f2a-4be9-a55c-dbd72af5e824","ce3b2e90-56b5-45b3-9746-b9d8380b9feb","a0e7da18-99e7-476d-9fc7-ce40d3d9ac5e","d41c153a-a7f7-4390-99b9-b175b15ff3bb","1434d49f-0826-4dbe-874e-9fa160091306","dbd6405c-4206-4939-a2ae-957dbfe985be","5c3a6ee0-fa82-4328-8800-7dc1e358f2ef","890e1b05-339f-4f70-a21b-bbb24cee8968","5c487e9d-ef99-4a74-bb29-f29182534ad8","f7da0a06-5716-4d18-9fe4-c49760a00383","736cd137-a233-4891-a871-a36ffd7f0f16","05a1da7b-00e7-4cdd-9410-7e9480eb4a77","c0247cec-af5c-471f-bd90-88b31d6c260e","2d3b53f3-ba80-4c1c-ad77-908f8efae199","8167c14e-f1ca-4db4-aa60-d0d65f4c3690","f7da7951-a377-45e1-9d7d-87fc71cf8b76","3c28a3b4-14c1-4a9b-9fb4-96c817b24c2d","ccdd0b02-a8a0-4bf9-907c-4dd8be639836","d87a85e4-d3f0-41ff-863d-7e7beaeee22d","a7bed94a-cdb6-4896-a5b4-3e2e943f1097","41c1e0a6-1d1e-4214-a0e8-3375ce76818c","b5a91f81-649b-4d2c-be25-3a91e05eff98","b7b7b529-09da-4318-a504-2649bd045086"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"ba601f1c-872a-4179-8bb5-bc80646b99bf","version":22,"type":"table","format":{"table_wrap":true,"table_properties":[{"width":207,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zxl<"},{"width":313,"visible":true,"property":"CbSI"},{"width":369,"visible":true,"property":"KeGT"}],"collection_pointer":{"id":"035b5a75-25f8-4ae8-acca-2bf6e7557189","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"collection_page_properties":[{"visible":true,"property":"Y>Aw"}]},"parent_id":"0f9f24f8-2570-4411-86a8-c10d9f788412","parent_table":"block","alive":true,"page_sort":["bc1b9d83-c82d-48e3-bed9-8e05ad55e942","5301eb0e-59ce-4eb1-b881-2ec7069a724a","8ad364a0-576b-4b77-b071-acce2760240b","07d1e163-d344-4407-b5d4-11a850a33160","d7bfdda6-5885-4763-b74c-a130c769b14a","65cad99e-a6af-43bd-9b53-fb9f3a62ad19","3abb17b2-5d4e-4a77-a2cc-736c73ef5932"],"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/d406ffd796e6fef4d9e6f4e48795d41161b8687c0f56c8c2d520084c45c5b57a00023b96c0165e4a b/.wrangler/state/v3/cache/default/blobs/d406ffd796e6fef4d9e6f4e48795d41161b8687c0f56c8c2d520084c45c5b57a00023b96c0165e4a new file mode 100644 index 0000000..9a7d1db --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/d406ffd796e6fef4d9e6f4e48795d41161b8687c0f56c8c2d520084c45c5b57a00023b96c0165e4a @@ -0,0 +1 @@ +{"rows":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"Quadram Institute, UK","Speaker":"Instructor: Evelien Adriaenssens","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"Viromics: Viral community analysis with metagenomics"},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"TAILOR Labs, Baylor College of Medicine","Speaker":"Instructor: Justin Clark ","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["0cd38da4-0919-4b69-bb95-3d9a6c8ae352"],"Event":"Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"BBQ Welcome lunch at Evergreen"},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Speaker":"Instructor: Ramy Aziz & Rebecca Wattam","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["c90b69ff-e994-403b-b885-59871db7734c"],"Event":"TBA (Genomics/PATRIC)"},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Affiliation":"Phages for Global Health","Speaker":"Instructor: Tobi Nagel & Fran Hodges","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["72bc1da3-cc5a-4293-8f3c-a8de212cf1ea"],"Event":"TBA (Biobanking)"},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"},"Session":"Pre-conference workshop","Time":"6:30 PM - 8:30 PM","Event":"(TBC) Workshop Extension"},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Poster Session","Time":"6:00 PM - 9:00 PM","Event":"Informal Poster Session "},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Social/Fun!","Time":"6:00 PM - 9:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"},"Location":"Purce Hall","Session":"Session 1: Plenary talks","Event":"Session 1: Plenary talks"},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":"Monday","Length of talk":["15 min"],"Session":"Session 1: Plenary talks","Time":"8:30 AM - 8:45 AM","Event":"Phagebiotics Welcome!"},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Martin Loessner","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"8:45 AM - 9:05 AM","Name of speaker":["be36f174-7518-499c-aa4c-4fe8c08ecfd1"],"Event":"Bacteriophages by design: tiny killers and smart detectives"},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Quadram Institute Bioscience","Speaker":"Evelien Adriaenssens","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"9:05 AM - 9:25 AM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"What’s going on with phage taxonomy and is it really necessary?"},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"},"Speaker":"Chair: Teagan Brown & TBA","Location":"Purce Hall","Session":"Session 2: Ecology & Informatics I","Event":"Session 2: Ecology & Informatics I"},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Lawrence Livermore National Laboratory, Livermore, CA","Speaker":"Gary Trubl","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:25 AM - 9:45 AM","Name of speaker":["cd337cdc-ca59-4f9e-a083-1b1f68fd180b"],"Event":"Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Harvard Medical School","Speaker":"Sian Owen","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:45 AM - 10:05 AM","Name of speaker":["3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c"],"Event":"Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Location":"CAB","Session":"Session 2: Ecology & Informatics I","Time":"10:05 AM - 10:25 AM","Event":"Break"},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Globe Institute, University of Copenhagen, Denmark","Speaker":"Thomas Sicheritz-Pontén","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"10:25 AM - 10:45 AM","Name of speaker":["b06e9b76-ff8a-432b-86e7-029a793897b3"],"Event":"Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University at Buffalo","Speaker":"Kathryn Kauffman","Session":"Session 2: Ecology & Informatics I","Time":"10:45 AM - 11:05 AM","Name of speaker":["49b79643-2347-4528-a497-8f4ed336c33a"],"Event":"Uncovering the roles of phages in the oral microbiome"},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jan Zheng","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:05 AM - 11:25 AM","Name of speaker":["5649ff80-cad7-451f-9b55-d297f1563090"],"Event":"Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phase Genomics, Inc.","Speaker":"Benjamin Auch","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:25 AM - 11:40 PM","Name of speaker":["93d533c0-875c-42c2-9a85-79199379e203"],"Event":"Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Genetics, Stanford University, Stanford, CA, USA","Speaker":"Yishay Pinto","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:40 AM - 11:55 AM","Name of speaker":["8df4db71-3c5c-40e0-9f4e-4671e81dbc71"],"Event":"Phage-inclusive profiling of human gut microbiomes with Phanta"},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":"Monday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 3: Phage defense","Event":"Session 3: Phage defense"},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University of Otago, New Zealand","Speaker":"Peter Fineran","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:00 PM - 1:20 PM","Name of speaker":["ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef"],"Event":"Anti-CRISPR strategies and their regulation"},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"School of Biological Sciences, University of Southampton, United Kingdom","Speaker":"Franklin Nobrega","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:20 PM - 1:40 PM","Name of speaker":["2a748a12-8f17-4a75-80e4-6c5e5752effb"],"Event":"Co-occurrence and synergism of anti-phage defence systems"},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Biology, McMaster University, Hamilton, Canada","Speaker":"Leah Sather","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:40 PM - 1:55 PM","Name of speaker":["0210e1bb-0c5e-4db7-9169-44a85b61799c"],"Event":"Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"School of Biological Sciences","Speaker":"Thomas Todeschini","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:55 PM - 2:10 PM","Name of speaker":["fa7afdac-7554-4588-91c2-b3543ed1f35d"],"Event":"Kiwa modulates host nuclease activity for anti-viral defense"},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Xu Peng","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"2:10 PM - 2:25 PM","Name of speaker":["3a70c9b0-883f-411e-aeff-63e1b91c6175"],"Event":"How archaeal viruses inhibit host CRISPR-Cas immunity"},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Time":"2:25 PM - 2:45 PM","Event":"Break"},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"},"Speaker":"Chair: Sandra Morales & TBA","Location":"Purce Hall","Session":"Session 4: Phage therapy I","Event":"Session 4: Phage therapy I"},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD","Speaker":"Scott Stibitz","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"2:45 PM - 3:05 PM","Name of speaker":["55bdd695-7c84-4da3-a08d-6b35cc79895b"],"Event":"Regulation of Phage Therapy by the FDA: CMC topics"},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phage Consulting, Sydney, New South Wales, Australia","Speaker":"Sandra Morales","Session":"Session 4: Phage therapy I","Time":"3:05 PM - 3:20 PM","Name of speaker":["ab627c93-11a9-4ef0-8deb-fa80f49f4a80"],"Event":"TBA (Phage therapy overview)"},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Queen Astrid Military Hospital, Belgium","Speaker":"Jean-Paul Pirnay","Session":"Session 4: Phage therapy I","Time":"3:20 PM - 3:40 PM","Name of speaker":["f3401535-46c5-44ba-852a-cf31eaaf7818"],"Event":"TBA (Phage therapy experience in Belgium)"},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Yale University, USA","Speaker":"Benjamin Chan","Session":"Session 4: Phage therapy I","Time":"3:40 PM - 3:55 PM","Name of speaker":["8a9e19e8-f881-437b-8c9e-594d07a25d95"],"Event":"TBA (Phage therapy experience at Yale)"},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Austen Terwilliger","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"3:55 PM - 4:15 PM","Name of speaker":["71c70747-235c-4e79-a22c-8764e7076ccd"],"Event":"A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":"Monday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":"Monday","Session":"Special Session","Time":"5:30 PM & 6:00 PM buses","Event":"Head to bus depot and go downtown to movie theater"},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"},"Speaker":"Panel: Martha Clokie, Diane Shader Smith, & more TBA. ","Location":"Downtown Olympia","Session":"Special Session","Time":"7:00 PM - 9:30 PM","Event":"Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":"Monday","Session":"Special Session","Time":"9:30 PM, 10:15 PM, 11 PM buses","Event":"Buses back to Evergreen"},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"},"Speaker":"Chair: Gina Suh & TBA","Location":"Purce Hall","Session":"Session 5: Phage therapy II","Event":"Session 5: Phage therapy II"},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":"Tuesday","Length of talk":["10 min."],"Session":"Session 5: Phage therapy II","Time":"8:30 AM - 8:40 AM","Event":"Introduction to keynote"},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":"Tuesday","Length of talk":["60 min."],"Speaker":"[Keynote] Diane Shader Smith","Session":"Session 5: Phage therapy II","Time":"8:40 AM - 9:40 AM","Name of speaker":["c6f82a66-2bb7-4431-8cb8-6ded07aa301c"],"Event":"Keynote TBA (Phage therapy patient/parent experience)"},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jessica Sacher","Accepted in airtable":true,"Session":"Session 5: Phage therapy II","Time":"9:40 AM - 10:00 AM","Name of speaker":["745163f6-a397-4a4c-b4cb-154e2ef458a9"],"Event":"Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"University of Toronto","Speaker":"Greg German","Session":"Session 5: Phage therapy II","Time":"10:00 AM - 10:20 AM","Name of speaker":["099bc17c-8582-473b-97c2-1b14f1c8a444"],"Event":"TBA (Phage therapy experience in Canada)"},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":"Tuesday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":"Tuesday","Length of talk":["15 min"],"Speaker":"Talk - Chris Shafer ","Accepted in airtable":false,"Session":"Session 5: Phage therapy II","Time":"10:40 AM - 10:55 AM","Name of speaker":["cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7"],"Event":"TBA (Patient experience)"},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":"Tuesday","Length of talk":["5 min"],"Session":"Session 5: Phage therapy II","Time":"10:55 AM - 11:00 AM","Event":"Introduction to keynote"},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":"Tuesday","Length of talk":["60 min."],"Affiliation":"IPATH, UCSD","Speaker":"[Keynote] Steffanie Strathdee","Session":"Session 5: Phage therapy II","Time":"11:00 AM - 12:00 PM","Name of speaker":["db83cbad-3504-4120-8eb2-a9e9f588fb29"],"Event":"TBA (Phage therapy experience in San Diego)"},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 6: Understanding & improving phage therapy","Event":"Session 6: Understanding & improving phage therapy"},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"IPATH, UCSD","Speaker":"Katrine Whiteson","Session":"Session 6: Understanding & improving phage therapy","Time":"1:00 PM - 1:20 PM","Name of speaker":["9dce44b9-3367-4c00-91b7-147e7554c75c"],"Event":"Better together: Phage cocktails constrain the growth of Enterococcus"},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium","Speaker":"Sabrina Green","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:20 PM - 1:40 PM","Name of speaker":["dddc50d1-cf21-42a5-99b9-b265b09b51d2"],"Event":"Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD","Speaker":"Kevin Burke","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:40 PM - 1:55 PM","Name of speaker":["e2672fc8-3000-4de3-b372-baa29bff31cb"],"Event":"Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, CA 92182, USA","Speaker":"Tiffany Luong","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:55 PM - 2:10 PM","Name of speaker":["70862f59-9b2b-498e-a110-eca0fa064e94"],"Event":"Lost in circulation: Improving the in vivo activity of phage cocktails"},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany","Speaker":"Magdalena Unterer","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:10 PM - 2:25 PM","Name of speaker":["9e27a8ec-a3b8-4167-9217-d7f4c8bc9008"],"Event":"Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Rime Bioinformatics SAS, Palaiseau, France","Speaker":"Antoine Culot","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:25 PM - 2:40 PM ","Name of speaker":["fc603774-7a1b-4ee5-987e-37afce4b85bd"],"Event":"Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Jiemin Du","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:40 PM - 2:55 PM","Name of speaker":["e757271b-ff33-407a-89b8-8cd37f0d9f7f"],"Event":"Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":"Tuesday","Length of talk":["20 min"],"Time":"2:55 PM - 3:15 PM","Event":"Break"},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD","Speaker":"Susan Lehman","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:15 PM - 3:35 PM","Name of speaker":["e868601c-0a86-4534-862a-feea152760d9"],"Event":"A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA","Speaker":"Katarzyna Danis-Włodarczyk","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:35 PM - 3:50 PM","Name of speaker":["46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4"],"Event":"Topical phage treatment of a P. aeruginosa mouse wound-infection model"},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA","Speaker":"Qingquan (Kevin) Chen","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:50 PM - 4:05 PM","Name of speaker":["be03672d-3029-461b-81ca-9fa90eb3248b"],"Event":"Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland","Speaker":"Gregory Resch","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:05 PM - 4:25 PM","Name of speaker":["e9bd9655-a26e-48a5-9afb-16ba0082c88f"],"Event":"Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA","Speaker":"Paul Bollyky","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:25 PM - 4:45 PM","Name of speaker":["99674cc4-e81f-45a2-912b-50cefd63c4e9"],"Event":"Circulating bacteriophages can identify bacterial pathogens in human infections"},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":"Tuesday","Session":"Poster Session","Time":"6:00 PM - 7:00 PM","Event":"Informal Poster session "},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":"Tuesday","Length of talk":["120 min"],"Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"},"Speaker":"Evergreen Chronology of Inspiration Panel","Location":"Purce Hall","Session":"Special Session","Time":"7:00 PM - 9:00 PM","Event":"TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":"Tuesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Celebration/Dancing"},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 7: Phage and the immune system","Event":"Session 7: Phage and the immune system"},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, USA","Speaker":"Dwayne Roach","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:30 AM - 8:50 AM","Name of speaker":["47154f21-f3d7-4f67-bc63-044dcd457522"],"Event":"The Viral Immunogenicity of Clinically Relevant Bacteriophages"},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland","Speaker":"Krystyna Dabrowska","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:50 AM - 9:10 AM","Name of speaker":["d043af99-31e1-4899-b2d6-e7aebfb09289"],"Event":"PhageScan: identification of major phage epitopes that are immunogenic for humans"},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Philip Lauman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:10 AM - 9:25 AM","Name of speaker":["a5125779-3bd8-4770-9ddd-a7de0bfec554"],"Event":"O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"College of Life and Environmental Sciences, University of Exeter","Speaker":"Meaghan Castledine","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:25 AM - 9:40 AM","Name of speaker":["e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0"],"Event":"Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Léa Zinsli","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:40 AM - 9:55 AM","Name of speaker":["cc428e33-a0a8-427d-a52c-e16bf7a5b030"],"Event":"Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA","Speaker":"Thomas Smytheman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:55 AM - 10:15 AM","Name of speaker":["8fdd1c46-143b-40aa-8887-ff385fcbff06"],"Event":"Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":"Wednesday","Length of talk":["20 min"],"Time":"10:15 AM - 10:35 AM","Event":"Break"},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 8: Molecular phage biology I","Event":"Session 8: Molecular phage biology I"},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA","Speaker":"Vivek Mutalik","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:35 AM - 10:55 AM","Name of speaker":["26635071-15db-4630-aed0-709d6a5af51e"],"Event":"Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Enea Maffei","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:55 AM - 11:10 AM","Name of speaker":["da86622d-2762-4d2d-8b1d-c500e44dd712"],"Event":"Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Carmen Gu Liu","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:10 AM - 11:25 AM","Name of speaker":["1a4a441d-ee6b-45c9-8b84-0c60dd412cbe"],"Event":"Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany","Speaker":"Jordan Romeyer Dherbey","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:25 AM - 11:40 AM","Name of speaker":["b3d03715-7585-46a6-b31d-98440b9c5a86"],"Event":"Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":"Wednesday","Length of talk":["10 min."],"Affiliation":"ICMR- National Institute of Cholera and Enteric Diseases","Speaker":"Bani Mallick","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:40 AM - 11:50 AM","Name of speaker":["909c2508-9568-4ba0-85b8-10247ee7f7fc"],"Event":"Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":"Wednesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"},"Speaker":"Chair: Michael Koeris","Location":"Purce Hall","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Event":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":"Wednesday","Length of talk":["20 min"],"Speaker":"Michael Koeris","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:00 PM - 1:20 PM","Name of speaker":["a3dd1393-507a-4b0f-890f-c2dae8a37e70"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"PhagePro, Inc","Speaker":"Minmin Yen","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:20 PM - 1:35 PM","Name of speaker":["a7b77d41-ff9a-4650-9e3f-d4d70015a202"],"Event":"Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Locus Biosciences","Speaker":"Nick Conley","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:35 PM - 1:50 PM","Name of speaker":["3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Dominic Sauvageau","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:50 PM - 2:05 PM","Name of speaker":["13ce51a7-4f96-4116-b462-45503a847bec"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"},"Session":"Social/Fun!","Time":"2:05 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":"Wednesday","Location":"TBA","Session":"Food!","Time":"5:00 PM - 7:00 PM","Event":"Dinner (TBA)"},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"},"Session":"Poster Session","Time":"7:00 PM - 9:00 PM","Event":"Formal Poster Session/Mixer I"},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"},"Session":"Social/Fun!","Time":"6:30 PM - ?","Event":"Phage sculpture building"},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Dancing "},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 10: Ecology & Informatics II","Event":"Session 10: Ecology & Informatics II"},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":"Thursday","Length of talk":["20 min"],"Speaker":"Ryan Cook","Session":"Session 10: Ecology & Informatics II","Time":"8:30 AM - 8:50 AM","Name of speaker":["3382a9f0-80c5-473c-9528-80821b7dd0f6"],"Event":"TBA (Phage ecology)"},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Leicester","Speaker":"Sophie Harrison","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"8:50 AM - 9:05 AM","Name of speaker":["c69f71c3-ecf0-439e-af81-b6429d26e631"],"Event":"Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology and Immunology, McGill University, Montreal, Canada","Speaker":"Michael Shamash","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"9:05 AM - 9:20 AM","Name of speaker":["6bb08bf3-d20b-403c-8138-58a25cb2c6d0"],"Event":"Gut virome colonization dynamics in a humanized mouse model of early life development"},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":"Thursday","Length of talk":["60 min."],"Speaker":"[Keynote] Martha Clokie","Accepted in airtable":false,"Session":"Session 10: Ecology & Informatics II","Time":"9:20 AM - 10:20 AM","Name of speaker":["26ff67d0-686a-4347-a52e-f0c6a08d52e3"],"Event":"TBA"},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":"Thursday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"},"Speaker":"Chair: Hany Anany & TBA","Location":"Purce Hall","Session":"Session 11: Phage in food and agriculture","Event":"Session 11: Phage in food and agriculture"},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"KU Leuven, Belgium","Speaker":"Jeroen Wagemans","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"10:40 AM - 11:00 AM","Name of speaker":["25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202"],"Event":"Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Research Scientist","Speaker":"Hany Anany","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:00 AM - 11:20 AM","Name of speaker":["99692a27-5cb0-46c6-b341-74f5d6701ad2"],"Event":"Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Department of Food Science, University of Tennessee, Knoxville, TN","Speaker":"Thomas Denes","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:20 AM - 11:40 AM","Name of speaker":["5d4dea8f-f420-4179-9773-78fcd7929c63"],"Event":"Overcoming hurdles for phage applications in food safety with directed evolution"},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"SCIPHAGE","Speaker":"Viviana Clavijo","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:40 AM - 11:55 AM","Name of speaker":["81f9417a-d86c-4e6b-b125-481ad425ca35"],"Event":"SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":"Thursday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 12: Molecular phage biology II","Event":"Session 12: Molecular phage biology II"},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Max Planck Institute for Terrestrial Microbiology, Marburg, Germany","Speaker":"Katharina Höfer","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:00 PM - 1:20 PM","Name of speaker":["f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae"],"Event":"Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Janine Bowring","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:20 PM - 1:35 PM","Name of speaker":["03894d69-8250-477b-bdb9-279325e1db10"],"Event":"Genomic mobilisation by rRNA operon recombination – another route of phage transduction"},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"School of Life Sciences, University of Warwick, Coventry, UK","Speaker":"Rebecca Quinn","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:35 PM - 1:50 PM","Name of speaker":["163cfe1e-0c11-4f53-ae42-d91dd3a1d516"],"Event":"Phage tRNAs Subvert Host Resistance"},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia","Speaker":"Valentina Andrea Floccari","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:50 PM - 2:05 PM","Name of speaker":["24959fbb-214c-49cb-aac7-573850ffcc34"],"Event":"Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Biology, University of Idaho","Speaker":"Tracey Peters","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:05 PM - 2:20 PM","Name of speaker":["7d737977-f461-42e3-b38d-44612cf790c4"],"Event":"Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Department of Medicine, McMaster University","Speaker":"Gayatri Nair","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:20 PM - 2:30 PM","Name of speaker":["f90b3af0-02da-4596-8063-5fb6fbbb1b59"],"Event":"Biasing Bacteriophage Behaviour"},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada","Speaker":"Jieting Lin","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:30 PM - 2:40 PM","Name of speaker":["a61583c9-528b-4adc-962e-e6a287b2c676"],"Event":"Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":"Thursday","Length of talk":["15 min"],"Session":"Session 12: Molecular phage biology II","Time":"2:40 PM - 2:55 PM","Event":"Closing Remarks / Future Meeting"},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Poster Session","Time":"3 PM - 5:00 PM","Event":"Formal Poster Session/Mixer II "},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Social/Fun!","Time":"3 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt: Hike to beach"},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":"Thursday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"},"Location":"Olympia","Session":"Social/Fun!","Time":"5 PM - 9:00 PM","Event":"Adventure out into Olympia for dinner and an evening on the water. "},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":"Friday","Date & Time":{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"},"Session":"Social/Fun!","Event":"Mt. Rainier hike!"}],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["Quadram Institute, UK"]],"LQJ@":[["Instructor: Evelien Adriaenssens"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Viromics: Viral community analysis with metagenomics"]]},"created_time":1687798566572,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","version":492,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["TAILOR Labs, Baylor College of Medicine"]],"LQJ@":[["Instructor: Justin Clark "]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},"created_time":1687798566573,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"320fbd52-2c2b-475f-b2da-07864683da29","version":285,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:30 - 1:30 PM"]],"title":[["BBQ Welcome lunch at Evergreen"]]},"created_time":1687803510356,"last_edited_time":1689391195918,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","version":391,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"LQJ@":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Genomics/PATRIC)"]]},"created_time":1687798574821,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","version":423,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"B:Eq":[["Phages for Global Health"]],"LQJ@":[["Instructor: Tobi Nagel & Fran Hodges"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Biobanking)"]]},"created_time":1687798577371,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","version":188,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687799240915,"last_edited_time":1689391199074,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","version":121,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["6:30 PM - 8:30 PM"]],"title":[["(TBC) Workshop Extension"]]},"created_time":1689380004207,"last_edited_time":1689391180080,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","version":441,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:30 PM"]],"title":[["Informal Poster Session "]]},"created_time":1687803348235,"last_edited_time":1689390202574,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","version":153,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1687803491538,"last_edited_time":1689390204139,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","version":155,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 1: Plenary talks"]],"title":[["Session 1: Plenary talks"]]},"created_time":1689384912122,"last_edited_time":1689390237972,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","version":238,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:30 AM - 8:45 AM"]],"~Dke":[["8:30 AM"]],"title":[["Phagebiotics Welcome!"]]},"created_time":1687799401390,"last_edited_time":1689390207153,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9914254b-f117-427d-a18e-942c13978d1a","version":281,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Martin Loessner"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:45 AM - 9:05 AM"]],"zo?d":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:45 AM"]],"title":[["Bacteriophages by design: tiny killers and smart detectives"]]},"created_time":1687799405505,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","version":253,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Quadram Institute Bioscience"]],"LQJ@":[["Evelien Adriaenssens"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["9:05 AM - 9:25 AM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1015"]],"title":[["What’s going on with phage taxonomy and is it really necessary?"]]},"created_time":1688512415031,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","version":165,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"LQJ@":[["Chair: Teagan Brown & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"title":[["Session 2: Ecology & Informatics I"]]},"created_time":1689385218335,"last_edited_time":1689390232321,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","version":200,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"LQJ@":[["Gary Trubl"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:25 AM - 9:45 AM"]],"zo?d":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1035"]],"title":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},"created_time":1687825729361,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","version":178,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Harvard Medical School"]],"LQJ@":[["Sian Owen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:45 AM - 10:05 AM"]],"zo?d":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1055"]],"title":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},"created_time":1689054446060,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","version":233,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"Mf`v":[["CAB"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:05 AM - 10:25 AM"]],"~Dke":[["10:05 AM"]],"title":[["Break"]]},"created_time":1687799413680,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","version":301,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Globe Institute, University of Copenhagen, Denmark"]],"LQJ@":[["Thomas Sicheritz-Pontén"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:25 AM - 10:45 AM"]],"zo?d":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},"created_time":1687799423553,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","version":323,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University at Buffalo"]],"LQJ@":[["Kathryn Kauffman"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:45 AM - 11:05 AM"]],"zo?d":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["2"]],"title":[["Uncovering the roles of phages in the oral microbiome"]]},"created_time":1688512413646,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","version":324,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jan Zheng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:05 AM - 11:25 AM"]],"zo?d":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},"created_time":1688512659324,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","version":340,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phase Genomics, Inc."]],"LQJ@":[["Benjamin Auch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:25 AM - 11:40 PM"]],"zo?d":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1145"]],"title":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},"created_time":1688087779835,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","version":397,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Yishay Pinto"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1130"]],"title":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},"created_time":1688087778316,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"43b54100-7643-4867-8231-1727a947cd4d","version":169,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12-1"]],"title":[["Lunch"]]},"created_time":1687799445188,"last_edited_time":1689391206119,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","version":35,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 3: Phage defense"]],"title":[["Session 3: Phage defense"]]},"created_time":1689385244780,"last_edited_time":1689390383379,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","version":311,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Otago, New Zealand"]],"LQJ@":[["Peter Fineran"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1025"]],"title":[["Anti-CRISPR strategies and their regulation"]]},"created_time":1688509096732,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","version":310,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"LQJ@":[["Franklin Nobrega"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1045"]],"title":[["Co-occurrence and synergism of anti-phage defence systems"]]},"created_time":1687799437045,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","version":242,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, McMaster University, Hamilton, Canada"]],"LQJ@":[["Leah Sather"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1105"]],"title":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},"created_time":1687799411405,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","version":320,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Biological Sciences"]],"LQJ@":[["Thomas Todeschini"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1120"]],"title":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},"created_time":1687799425372,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","version":295,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Xu Peng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1135-1150"]],"title":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},"created_time":1687799439413,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","version":235,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"pjT:":[["2:25 PM - 2:45 PM"]],"~Dke":[["2:40"]],"title":[["Break"]]},"created_time":1687803199153,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","version":69,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"LQJ@":[["Chair: Sandra Morales & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 4: Phage therapy I"]],"title":[["Session 4: Phage therapy I"]]},"created_time":1689385265953,"last_edited_time":1689390405405,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","version":244,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"LQJ@":[["Scott Stibitz"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["2:45 PM - 3:05 PM"]],"zo?d":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3"]],"title":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},"created_time":1687804154218,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","version":408,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phage Consulting, Sydney, New South Wales, Australia"]],"LQJ@":[["Sandra Morales"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:05 PM - 3:20 PM"]],"zo?d":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["TBA (Phage therapy overview)"]]},"created_time":1689054379387,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","version":347,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Queen Astrid Military Hospital, Belgium"]],"LQJ@":[["Jean-Paul Pirnay"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:20 PM - 3:40 PM"]],"zo?d":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["340"]],"title":[["TBA (Phage therapy experience in Belgium)"]]},"created_time":1687825469236,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","version":304,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Yale University, USA"]],"LQJ@":[["Benjamin Chan"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:40 PM - 3:55 PM"]],"zo?d":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["4"]],"title":[["TBA (Phage therapy experience at Yale)"]]},"created_time":1688870910296,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","version":339,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Austen Terwilliger"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:55 PM - 4:15 PM"]],"zo?d":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["420-440"]],"title":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},"created_time":1687804152062,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","version":177,"type":"page","properties":{";:c\\":[["Monday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5-6"]],"title":[["Dinner"]]},"created_time":1687804161297,"last_edited_time":1689391211332,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","version":257,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["5:30 PM & 6:00 PM buses"]],"~Dke":[["6:10 PM - 7:00 PM"]],"title":[["Head to bus depot and go downtown to movie theater"]]},"created_time":1687804165074,"last_edited_time":1689391217591,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","version":542,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"LQJ@":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Mf`v":[["Downtown Olympia"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:30 PM"]],"~Dke":[["7:00 PM - 9:30 PM"]],"title":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},"created_time":1687804327137,"last_edited_time":1689390602372,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","version":135,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["9:30 PM, 10:15 PM, 11 PM buses"]],"title":[["Buses back to Evergreen"]]},"created_time":1689385721108,"last_edited_time":1689391222881,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","version":77,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"LQJ@":[["Chair: Gina Suh & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 5: Phage therapy II"]],"title":[["Session 5: Phage therapy II"]]},"created_time":1689385327067,"last_edited_time":1689390510980,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","version":158,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["10 min."]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:30 AM - 8:40 AM"]],"~Dke":[["8:30 AM"]],"title":[["Introduction to keynote"]]},"created_time":1687804872919,"last_edited_time":1689390517374,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","version":418,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Diane Shader Smith"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:40 AM - 9:40 AM"]],"zo?d":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:40"]],"title":[["Keynote TBA (Phage therapy patient/parent experience)"]]},"created_time":1687804875083,"last_edited_time":1689390533282,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","version":277,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jessica Sacher"]],"PvYj":[["Yes"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["9:40 AM - 10:00 AM"]],"zo?d":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940"]],"title":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},"created_time":1687803978208,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","version":339,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Toronto"]],"LQJ@":[["Greg German"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:00 AM - 10:20 AM"]],"zo?d":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["10"]],"title":[["TBA (Phage therapy experience in Canada)"]]},"created_time":1688514223660,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","version":90,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10:20 AM"]],"title":[["Break"]]},"created_time":1688510819582,"last_edited_time":1689390856637,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","version":440,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"LQJ@":[["Talk - Chris Shafer "]],"PvYj":[["No"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:40 AM - 10:55 AM"]],"zo?d":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1040"]],"title":[["TBA (Patient experience)"]]},"created_time":1688870878668,"last_edited_time":1689390547176,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","version":272,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["5 min"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:55 AM - 11:00 AM"]],"~Dke":[["1055"]],"title":[["Introduction to keynote"]]},"created_time":1687804891380,"last_edited_time":1689390854168,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","version":295,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["[Keynote] Steffanie Strathdee"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["11:00 AM - 12:00 PM"]],"zo?d":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["11am"]],"title":[["TBA (Phage therapy experience in San Diego)"]]},"created_time":1687824627233,"last_edited_time":1689390550195,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","version":96,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687824632680,"last_edited_time":1689391227320,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","version":41,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"title":[["Session 6: Understanding & improving phage therapy"]]},"created_time":1689385344622,"last_edited_time":1689390887337,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3918b591-a398-4a45-a808-38c6d79323c3","version":251,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["Katrine Whiteson"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:05 AM"]],"title":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},"created_time":1687824774421,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"11b1742c-9e64-4811-a371-6bf962e05694","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"LQJ@":[["Sabrina Green"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},"created_time":1687824793158,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","version":361,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"LQJ@":[["Kevin Burke"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["140"]],"title":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},"created_time":1687803973490,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","version":210,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"LQJ@":[["Tiffany Luong"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["155"]],"title":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},"created_time":1687825345820,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","version":466,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"LQJ@":[["Magdalena Unterer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220-235"]],"title":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},"created_time":1687799421442,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","version":298,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Rime Bioinformatics SAS, Palaiseau, France"]],"LQJ@":[["Antoine Culot"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:25 PM - 2:40 PM "]],"zo?d":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},"created_time":1689241721977,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","version":249,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Jiemin Du"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:40 PM - 2:55 PM"]],"zo?d":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["225-240"]],"title":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},"created_time":1687824771581,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["2:55 PM - 3:15 PM"]],"~Dke":[["240"]],"title":[["Break"]]},"created_time":1687824801783,"last_edited_time":1689390566824,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","version":172,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"LQJ@":[["Susan Lehman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:15 PM - 3:35 PM"]],"zo?d":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3:00"]],"title":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},"created_time":1687825464297,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","version":243,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"LQJ@":[["Katarzyna Danis-Włodarczyk"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:35 PM - 3:50 PM"]],"zo?d":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},"created_time":1687804889505,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","version":225,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"LQJ@":[["Qingquan (Kevin) Chen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:50 PM - 4:05 PM"]],"zo?d":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["335-350"]],"title":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},"created_time":1688514225625,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","version":268,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"LQJ@":[["Gregory Resch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:05 PM - 4:25 PM"]],"zo?d":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},"created_time":1687824778489,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","version":341,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Paul Bollyky"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:25 PM - 4:45 PM"]],"zo?d":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM -10:05 PM"]],"title":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},"created_time":1687824776474,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","version":66,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687825706407,"last_edited_time":1689391232151,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","version":111,"type":"page","properties":{";:c\\":[["Tuesday"]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 7:00 PM"]],"~Dke":[["6:00 PM - 7:00 PM"]],"title":[["Informal Poster session "]]},"created_time":1687825710832,"last_edited_time":1689390577528,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","version":504,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["120 min"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"LQJ@":[["Evergreen Chronology of Inspiration Panel"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},"created_time":1687825713435,"last_edited_time":1689390587466,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","version":100,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9 PM - ?"]],"title":[["Celebration/Dancing"]]},"created_time":1687825714716,"last_edited_time":1689390835462,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","version":51,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 7: Phage and the immune system"]],"title":[["Session 7: Phage and the immune system"]]},"created_time":1689385364350,"last_edited_time":1689390824571,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","version":226,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, USA"]],"LQJ@":[["Dwayne Roach"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},"created_time":1687803976098,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","version":173,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"LQJ@":[["Krystyna Dabrowska"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:50 AM - 9:10 AM"]],"zo?d":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["850"]],"title":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},"created_time":1687803197335,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","version":177,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Philip Lauman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:10 AM - 9:25 AM"]],"zo?d":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["910"]],"title":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},"created_time":1687825352404,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","version":236,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["College of Life and Environmental Sciences, University of Exeter"]],"LQJ@":[["Meaghan Castledine"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:25 AM - 9:40 AM"]],"zo?d":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["925"]],"title":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},"created_time":1687804887674,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","version":198,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Léa Zinsli"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:40 AM - 9:55 AM"]],"zo?d":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["210"]],"title":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},"created_time":1687824768936,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","version":303,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"LQJ@":[["Thomas Smytheman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:55 AM - 10:15 AM"]],"zo?d":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940-955"]],"title":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},"created_time":1687825475724,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"944c9a63-de56-4d06-b8cd-06558125646e","version":155,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"pjT:":[["10:15 AM - 10:35 AM"]],"~Dke":[["955"]],"title":[["Break"]]},"created_time":1688512417106,"last_edited_time":1689390828482,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","version":35,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"title":[["Session 8: Molecular phage biology I"]]},"created_time":1689385380738,"last_edited_time":1689390817548,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"LQJ@":[["Vivek Mutalik"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:35 AM - 10:55 AM"]],"zo?d":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:25 AM"]],"title":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},"created_time":1687799457743,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e149194-e542-4204-8062-fd608eec8872","version":249,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Enea Maffei"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:55 AM - 11:10 AM"]],"zo?d":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},"created_time":1687803193040,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","version":327,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Carmen Gu Liu"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:10 AM - 11:25 AM"]],"zo?d":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},"created_time":1687825727042,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","version":350,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"LQJ@":[["Jordan Romeyer Dherbey"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:25 AM - 11:40 AM"]],"zo?d":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["150"]],"title":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},"created_time":1687803195265,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["10 min."]],"B:Eq":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"LQJ@":[["Bani Mallick"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:40 AM - 11:50 AM"]],"zo?d":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["930-945"]],"title":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},"created_time":1687825724713,"last_edited_time":1689390622730,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","version":42,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687825725697,"last_edited_time":1689391247104,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","version":61,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"LQJ@":[["Chair: Michael Koeris"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"title":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},"created_time":1689385397612,"last_edited_time":1689390775948,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","version":418,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"LQJ@":[["Michael Koeris"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["355"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825471094,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","version":190,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["PhagePro, Inc"]],"LQJ@":[["Minmin Yen"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["410"]],"title":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},"created_time":1687825467340,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","version":239,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Locus Biosciences"]],"LQJ@":[["Nick Conley"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["425"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825472550,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","version":298,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Dominic Sauvageau"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["440-455"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825477708,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","version":193,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["2:05 PM - 5:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1688513391651,"last_edited_time":1689390780669,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","version":175,"type":"page","properties":{";:c\\":[["Wednesday"]],"Mf`v":[["TBA"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 7:00 PM"]],"~Dke":[["5:00 PM - 7:00 PM"]],"title":[["Dinner (TBA)"]]},"created_time":1688513047039,"last_edited_time":1689391243919,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","version":233,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["Formal Poster Session/Mixer I"]]},"created_time":1688513045165,"last_edited_time":1689390784399,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","version":114,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:30 PM - ?"]],"~Dke":[["6:30 PM - ?"]],"title":[["Phage sculpture building"]]},"created_time":1688881537706,"last_edited_time":1689390731272,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7781829a-04c3-488d-8c00-67cbfa195279","version":72,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9:00 PM - ?"]],"title":[["Dancing "]]},"created_time":1688513043334,"last_edited_time":1689390786731,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","version":56,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"title":[["Session 10: Ecology & Informatics II"]]},"created_time":1689385411869,"last_edited_time":1689390736908,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ac725466-3339-4427-9079-434d80ade7b9","version":319,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"LQJ@":[["Ryan Cook"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220"]],"title":[["TBA (Phage ecology)"]]},"created_time":1688512414351,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","version":386,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Leicester"]],"LQJ@":[["Sophie Harrison"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:50 AM - 9:05 AM"]],"zo?d":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["235"]],"title":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},"created_time":1688512411541,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"LQJ@":[["Michael Shamash"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:05 AM - 9:20 AM"]],"zo?d":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1115"]],"title":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},"created_time":1687825730087,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","version":290,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Martha Clokie"]],"PvYj":[["No"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:20 AM - 10:20 AM"]],"zo?d":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["TBA"]]},"created_time":1688514593287,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","version":160,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10"]],"title":[["Break"]]},"created_time":1688088803519,"last_edited_time":1689390791508,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5489e88d-538f-4a44-804d-ee83ee558203","version":69,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"LQJ@":[["Chair: Hany Anany & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"title":[["Session 11: Phage in food and agriculture"]]},"created_time":1689385433340,"last_edited_time":1689390765437,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2e95f701-433d-46d7-b576-3763b363edf7","version":232,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["KU Leuven, Belgium"]],"LQJ@":[["Jeroen Wagemans"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["10:40 AM - 11:00 AM"]],"zo?d":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1030"]],"title":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},"created_time":1688512255481,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","version":228,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Research Scientist"]],"LQJ@":[["Hany Anany"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:00 AM - 11:20 AM"]],"zo?d":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1050"]],"title":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},"created_time":1688512253803,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","version":245,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"LQJ@":[["Thomas Denes"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:20 AM - 11:40 AM"]],"zo?d":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1110"]],"title":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},"created_time":1688512251773,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","version":257,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["SCIPHAGE"]],"LQJ@":[["Viviana Clavijo"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1125"]],"title":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},"created_time":1687825723153,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","version":90,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1688088805159,"last_edited_time":1689391256910,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","version":40,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"title":[["Session 12: Molecular phage biology II"]]},"created_time":1689385453912,"last_edited_time":1689390755122,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","version":225,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"LQJ@":[["Katharina Höfer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1pm"]],"title":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},"created_time":1687799450907,"last_edited_time":1689390664639,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"581507dc-533e-4600-9215-03f0e000393d","version":329,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Janine Bowring"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},"created_time":1687825728292,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","version":294,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"LQJ@":[["Rebecca Quinn"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["205"]],"title":[["Phage tRNAs Subvert Host Resistance"]]},"created_time":1687799408892,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","version":222,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"LQJ@":[["Valentina Andrea Floccari"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["845"]],"title":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},"created_time":1687825727796,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","version":248,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, University of Idaho"]],"LQJ@":[["Tracey Peters"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:05 PM - 2:20 PM"]],"zo?d":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["915"]],"title":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},"created_time":1688512649947,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","version":310,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Department of Medicine, McMaster University"]],"LQJ@":[["Gayatri Nair"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:20 PM - 2:30 PM"]],"zo?d":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9"]],"title":[["Biasing Bacteriophage Behaviour"]]},"created_time":1687799452995,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","version":267,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"LQJ@":[["Jieting Lin"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:30 PM - 2:40 PM"]],"zo?d":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1140-1155"]],"title":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},"created_time":1688878455809,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:40 PM - 2:55 PM"]],"~Dke":[["250"]],"title":[["Closing Remarks / Future Meeting"]]},"created_time":1688514591043,"last_edited_time":1689390673609,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","version":255,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:05 PM - 5:00 PM"]],"title":[["Formal Poster Session/Mixer II "]]},"created_time":1688088808511,"last_edited_time":1689390674834,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","version":261,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:00 PM - 5:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},"created_time":1688088811059,"last_edited_time":1689390678171,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","version":183,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Mf`v":[["Olympia"]],"R\\:D":[["Social/Fun!"]],"pjT:":[["5 PM - 9:00 PM"]],"title":[["Adventure out into Olympia for dinner and an evening on the water. "]]},"created_time":1688513305939,"last_edited_time":1689390724489,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c39de849-001b-4ae2-866a-68f4655eed15","version":84,"type":"page","properties":{";:c\\":[["Friday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"R\\:D":[["Social/Fun!"]],"title":[["Mt. Rainier hike!"]]},"created_time":1689388334090,"last_edited_time":1689390721716,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":201,"visible":false,"property":">>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"FmK{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"fb24f8e8-7c0e-4774-8d4f-6bec35029c13","version":292,"type":"table","name":"For copying to final","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":225,"visible":true,"property":">>Gm"},{"width":124,"visible":true,"property":";:c\\"},{"width":285,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"pjT:"},{"width":286,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":159,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","version":818,"type":"table","name":"Sorted by name","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":176,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zo?d"},{"width":194,"visible":true,"property":">Gm"},{"width":121,"visible":true,"property":"<\\t`"},{"width":200,"visible":true,"property":"R\\:D"},{"width":372,"visible":false,"property":"_HTj"},{"width":200,"visible":false,"property":"Mf`v"},{"width":200,"visible":false,"property":"pjT:"}],"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"page_sort":["80d7da9f-82c3-406e-9741-bcc1b9cff1a9","b8f20d87-b39a-4064-a023-6abfca157c88","3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","e86b039d-5c7a-4e4d-8623-a6b08cb24a48","320fbd52-2c2b-475f-b2da-07864683da29","5ff3d332-073e-4c93-b127-e69f9df169d5","d179a076-b691-46ad-a752-ce32dfa11bcd","1dda772e-1e87-4a0c-a582-a191ff304204","b8eee1a0-1cc3-42fd-8b29-ff4e3c581d19","26108f23-c750-4058-b26f-8420fb7748a3","73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","1d704fe9-bd23-4fb7-9d74-a974c65e2244","bf7b51df-bfff-459b-85dc-ff4fc776c9aa","7cf59d05-a856-4633-978a-a56a880f0cf8","455e36c6-1fcc-41db-89d5-4e5a959c349a","dd04346a-c48c-4d7c-89ac-5e1920576bfa","1d996c31-e552-4e3f-86d5-681bd1884843","75dc8c11-862a-498b-8cea-c14a7c6a18e9","dff47c86-ccda-4517-adbb-34074ba2ffa4","58ca3e2e-cbc1-43a5-a9bf-710bc2264a6f","fea14a8b-2951-4dff-acac-14de4789184d","3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","07279636-6443-4a25-abd5-07a40b1882c9","ba3bfc5f-241c-49ce-ae27-2ba7527b27d6","d5e79306-ddfc-4d96-9ebd-47eaec869c27","cfecf9c5-fd50-4930-9264-2f7c3726672d","b0a8cfd9-bf0f-4696-9bdd-b0b05d7cec71","9914254b-f117-427d-a18e-942c13978d1a","a82c044e-1394-4475-92bf-9c43e718a38c","3918b591-a398-4a45-a808-38c6d79323c3","c556f9b3-2a23-4bf2-a7cd-fff5434f949a","d0c49619-86e8-43cd-9df3-86dd7c1c1d1d","4c230034-857b-4aff-b554-3cf22b957cdd","8d47b39b-636b-47a2-ac35-5f3051689147","25b27f0c-aa35-4926-b595-208c5231130e","148eaf01-e456-4435-9314-0066f1d2d6de","7916e9a3-6952-4d49-83b8-2e697415d72a","b7abe37a-8c9c-4efc-83a8-0ccc36de5d1d","bfb853d9-b1e6-481a-970e-6c100c0f16c7","21b8ee51-3565-496e-84ff-8782203c072c","b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","c67fb2e5-b1ab-4d56-af58-d8d56db18c88","e693a814-7ac1-4664-b3c2-cee5d3549c5a","a37f9cb1-3d9d-459a-a1c4-68bf475ea444","b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","9c167305-10ba-4b34-a092-7a5ea13239b4","d2710181-6321-4d71-88c7-5f049d2dfd57","ee3dcdd1-d7bc-4809-9caf-ce8bec318384","d36485a7-d749-4512-a97f-8a64bdec62f4","43b54100-7643-4867-8231-1727a947cd4d","9d48e9c9-260f-41b2-a21e-9441bab74ca0","e3f09768-d770-415c-b768-b8278b5482a0","87fe14a6-6042-483b-8261-a3d7a9596298","dab8ef42-154f-4e4b-b34a-7da4616f7368","edfe4fce-28e9-4b98-a80a-6cf3afa53856","4e149194-e542-4204-8062-fd608eec8872","cdb99eef-cdbd-4aaa-a678-dc089739c335","e15b3ca5-974f-4409-a879-31857807f86e","8963ee06-88f2-4f4b-a3cf-5e6ee6244bd6","394bdbe9-ca41-4113-b5e0-1fc9729d0e11","cfde895b-a32e-4fef-8c75-85755601e11d","d72b0b26-a76a-426b-aec4-8c87f84ed27f","50505d83-a8c8-460e-a976-4f53b6e15dff","c26cd957-9549-41af-ab46-126152046e11","4b93b494-6ace-4fe2-91ae-5a11a4b2698f","16678ca8-1e8a-497e-a3d2-bf8edab31a3b","e992eab2-5475-424e-abaa-de0736c4c3c5","26cddb2d-015e-4a96-a665-5c3ae68f958f","634cc05d-293e-4549-a903-dfb8d19b9e4b","f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","20917259-a2cf-40c9-a72e-3374fe2062ea","5415f867-573e-4b4d-bfc0-e3581989dbe5","d2e78427-4fb8-4a28-95c9-b30cb1f509f5","bf6fe550-9932-4e46-ba29-7745a0608549","8bcad3aa-f2d4-4f61-895f-ad066706dfca","30efc624-9c89-4337-a70d-a427146c730b","6a8181aa-972a-4e87-b78f-30f05a5f7387","b5683451-84aa-4bd7-a17d-b370db7980be","138df2d1-4629-4211-9ea0-396f458d2b4c","5499e98a-832c-4a8c-aba1-ec1d9f57292b","a3cd60e9-c694-46fe-a631-f24b44da1cdc","fcead5f3-6947-423d-8683-0c65e83ed8f9","5ba12c78-37ec-4f42-8ed9-e8b1b4abca41","375dd916-026d-4e76-9f86-89ba2d2482f3","c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","45e610f2-5dab-4cf8-8976-62ef58f65417","25bad495-34fe-4db7-b879-f92f359edb71","229860cd-cae1-483d-9476-14ce608bc0ab","d04deead-44b9-4e15-97ff-af4faac462b8","3b540bde-6c3d-4c1a-b7bb-682eba1404df","21dfef19-a016-4520-bc9a-6eaac35c0123","d8b23bc3-90e8-4486-8eb3-8287563d77af","c297bc53-3c36-45af-95b9-867bd1763528","b3af1c11-d888-4292-b1c9-49004d6d90bd","a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","7e3d2dd1-b680-4c11-bfe5-f5f9510a099b","eaf6242a-4ccc-42d0-9df4-64516ae6da10","bd7f78f0-9879-4a81-9843-020c0aedb8bf","15501ed4-0d22-4449-bc23-74bf5e810fe5","cd74805b-8867-46ba-bf38-b8b720f697a8","8927a91f-eff6-42c1-9dd8-0fc959c0feee","ab6c1c7f-e4dc-4292-a336-a8aeeeea5231","947742f7-73c1-4b7d-b535-14fe28df6455","ca2f9f2d-3cc0-4add-92e4-24d4b79b4811","bff2728f-9ccd-4f6d-80a0-bde174b96ac7","8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","9919ea53-db46-44e6-b90a-37dac36054a2","abb3181f-8478-447e-8ef4-4f798c674ac0","f423b719-8bc2-446a-af8f-fe6cedc5db93","1cf907e2-8eef-44ff-8381-1aeba6f6fe20","c2c58aff-b2bd-478e-a740-d4959d9ac154","ed30e6f6-7c05-4756-a13f-a8d83d34bec6","11b1742c-9e64-4811-a371-6bf962e05694","2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","1cef6663-9aaf-4d01-a450-e5e863af04b8","3b88ee39-8868-4cfb-83bb-1f234e16724d","dc003b5e-bd14-4150-af35-cf1eca003e13","c0de3776-ede0-4c30-be88-288a19604379","dbb449a2-7df2-4821-a94d-400b65aed1e0","0a75393a-f05c-441a-b978-0b033e7b3dcb","a3a8dd50-043c-4586-9e6a-165dae46e7cd","1efe468a-0193-4078-a1b4-66c36ef05846","a42cc434-71a4-47e5-8950-2ff2d585e4bc","d1569dba-23b6-46a0-9556-b71ff0727e26","a259cd5d-0a45-40d2-98d7-afb774a00554","4180d7bc-d11f-4d4f-be7b-801320cf94aa","cfc42d63-ec72-443e-a1e0-7cd15cd1b6b2","6bfdf00f-db69-4def-ab47-e13a8cd7b673","6028f4b4-f271-472c-a2c8-acb11caa3fff","60a853d5-098c-4f34-b9dd-46a58efe5216","c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","67f94fd5-db64-4d62-bea2-987fa2be2f69","c1b92230-2e51-412e-8149-d83f131e77e7","f09da0ac-5747-44e4-bf6a-4291fee3d9a2","1bb96063-db6c-4cbe-af69-2d00c6a7b369","2216cb44-05b3-490e-84e6-f928b4ed2aef","276d1e16-7a7c-4552-b2a5-6425ef44907b","5df0843e-6388-403c-aff3-0fd826eb55bf","e23c80b4-93af-47c4-a213-c2fdf3d919bf","d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","2dc746fa-8f4f-423d-ab3b-646834be8e8a","be032e3f-6934-41cb-82dc-c1c6f47f5142","f3b72cc7-1135-4121-bb1a-e14befc8eb4f","b706798a-20fd-460d-b182-3528d57c3743","3137dcf5-8634-4567-825e-b680eba551d9","1a64bcc6-373d-4d33-a78b-82fa0e1d2c21","6c056d5a-a4aa-423f-ac4e-5da45899f8c3","d8b88202-9bbb-4794-a41c-ade28f86ec79","f695b133-d79e-4a28-806a-c7816b2b20e5","8f11570b-97d7-432c-9e08-8d81c364a9bd","cba0e342-eb23-490d-bcb3-5ad702ffe616","ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","14d54749-63ad-4780-8bf0-bfd9ed9db335","a1307bb9-ff3e-4f34-a82b-0f00e80bb259","ca5acf7a-8883-4fdd-8645-c20d646b6ea4","944c9a63-de56-4d06-b8cd-06558125646e","1dbba8a9-1e44-443d-b3f5-1215cb7684c7","d78d4962-bc5b-465f-8021-218e20f5fc7a","29cbb222-2f1b-4e94-9906-136598c6a36e","8c311bef-4951-42b3-af2b-64f4b1a8533b","9c16ce62-0fa0-40bc-9aa0-33562495d8e0","0be688d3-4b95-466c-99c7-1e10555047ca","435f531a-0c04-4507-8cdd-8ab2ba2098a6","29178e11-4d8e-4bfb-a185-ad6ef228be55","8a299808-90ad-4a99-a961-487a74113602","20593fb1-7b98-4ad4-b665-bd51d17ea110","76c088a7-e1d9-4cf3-8c2a-a089d5872a73","8e803c64-fa50-43d5-8b56-3166792858c6","921231f0-8471-4717-872a-ed53c83b9150","4599af88-8851-4ad4-9120-ac7720b2a9b0","6148d44a-7933-4d98-8ce1-d22be7db73d1","ca9891b7-6b3d-4afe-a3b4-37e49274f963","220244b9-e22e-4c55-921e-2f2d98fa01a0","4a5045e7-0d9c-44bc-b079-8a0f32dc2ab8","df60a7dd-daaa-4aae-ad38-a8977ae8223c","b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","27a95a36-f080-43c2-8b8c-1a10c814f35a","fbae94a2-65d1-4db9-b48e-eb296215e7d3","ddafcc94-0025-4912-9da6-2bd214d70984","97f6e680-6894-4879-aae5-2d099a0439fe","2550fd85-0e8c-40bf-aa42-30b6fe394df3","9af07187-e2f0-4dca-9f87-175ecc1c41ea","c9a4078e-fec0-4a47-8779-2552487e4143","71950354-ce16-4acb-9537-926885811e17","bf482d4d-f2b1-4160-99bb-9ded585ff518","a68d9e08-8804-41ae-88f3-af9fc9f52b6a","cde43b84-f7b5-4076-b0fa-d9883edbe118","949bdd60-dd5d-4871-9248-16183ae117bb","9d80a5a4-f80a-4344-86c1-fffe5724a93f","0d914c29-ad5e-4682-9eb5-cccd8b35d156","15e8b124-9e95-4d7d-937d-a7448126d443","789fff4a-31ae-4724-8214-cbad2a03bc6c","c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","37f64d6c-856a-45d4-ae1c-787aa2eaac29","a604a22d-e533-4b87-bb55-09adc2af00ca","7781829a-04c3-488d-8c00-67cbfa195279","c7139154-3923-4dee-8181-a6243de4c976","f3ac9766-0302-4522-906d-45ad7a8ea060","2b86d329-32b9-4e95-8c15-fe6ea90ef4eb","a3ff1019-73c2-46ef-a917-0c749dc7a66b","ac6cc1d7-0745-47fd-9b87-84c63329039f","581507dc-533e-4600-9215-03f0e000393d","5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","471524da-ac95-4e70-834e-cad6e07afe1f","8db54920-85c2-457c-9ba7-9901243cfbbc","bf1e263f-818f-4196-ab92-7167aeedecf8","e888c902-3fb5-4e97-9db4-39c540023ab7","f2624eb4-9955-441d-870a-86d77cfc9f29","a6427d07-59df-4500-89bf-63153e845c67","2e95f701-433d-46d7-b576-3763b363edf7","d8bc49a0-033d-43f7-a57c-e3a267f55879","4e34ad83-a93f-4fad-a000-625e1e7ce92a","182fb594-883e-45ca-9b0a-f7dfb57f2ba7","26eaaf74-61d5-4b57-a7c1-d644e164302e","bb0c3590-afbe-4528-aba6-bda243798293","2c5431f2-8923-4b9b-adfb-344533552bdd","3f82ea9d-6118-49b3-a167-cdab2fe82497","ce6df1d4-f38a-4649-bc2c-b847e48b5056","e2a17874-e8e5-44fe-aff2-f2cb9c56098a","aa5cf4e8-a847-4cd3-80a2-ee1de8369ce4","a22b1812-888d-4ad8-8e0c-40ed5be324d4","fe40b9d7-4313-43be-82cc-2d57a0cdb61b","12d07a36-a3c7-49cc-8fe3-63d060d04339","86f3cc7b-6590-4819-9f87-95ec5c6c6c1d","6e778f3a-e16d-4970-a3af-0b7dddb43b64","e79b83e8-55bc-4750-b4f7-9646647d8d19","1a56df20-9634-4e16-873a-db82c54b9d48","7b0e1ccd-df28-481e-9d87-3d9838200395","6f7a547e-f143-4997-8363-808723cadb92","ee186a6d-8647-4202-8f1d-516c4d4229dc","1d86cd3c-e014-46e0-8f73-0e70d4287cd5","85295232-d496-49cd-89d6-30495d7e4cb4","6ce6f053-2c4b-4987-bf3c-d2a5ec03ecf2","3d79767d-be48-4947-ab26-bf43ae1451bd","990dd017-90eb-4940-b5e4-9ac8e5f2562c","e4122488-d85f-4ea0-a801-2c23a9312574","dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","54c930a8-c75b-4cbb-91d1-ab759487c9a3","ac725466-3339-4427-9079-434d80ade7b9","d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","bd297533-496f-4d20-b81f-7ad4e0756397","3ee8e07b-eea3-4939-9055-6aff48e3e51a","a96898de-d384-45ec-961c-8f01fdb5dc73","32e0ad0e-d72f-48f0-bba4-6a3707604aaa","4007bf81-b00e-4750-b851-7ec471273bf2","40aeedb7-0877-478c-b4e4-49395f7b26cf","8673752a-79a8-4568-8deb-571cd6aab24d","69f8b658-9cfb-407d-90c6-3efc9b96835b","3e3afdd9-5775-4d05-9b9a-6bf8d515fc04","f91d821b-f4af-4f98-9c77-967120c13514","77203aa4-43b9-4b93-97bf-b1cbae4e14eb","76add0fa-5b7d-4d47-a705-8228c7a6d146","fa33325b-d6dd-4fe4-9a1f-dd7db6d78f95"],"query2":{"timeline_by":">>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"5537f8ba-2f92-467f-aca5-d43a0e59d6ab","version":32,"type":"calendar","name":"","format":{"table_properties":[{"width":308,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"=WD`"},{"width":200,"visible":true,"property":"~Dke"},{"width":329,"visible":true,"property":">>Gm"}],"calendar_properties":[{"visible":false,"property":"zo?d"},{"visible":true,"property":"R\\:D"},{"visible":true,"property":":iJn"},{"visible":true,"property":">>Gm"},{"visible":false,"property":"pjT:"},{"visible":false,"property":"_HTj"},{"visible":false,"property":"PvYj"},{"visible":false,"property":"<\\t`"},{"visible":false,"property":"=WD`"},{"visible":false,"property":"B:Eq"},{"visible":false,"property":">Gm","timeline_by":">>Gm"},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"be03b38d-8ecb-4ecf-84b2-d84948b9ed6f","version":23,"type":"table","name":"Chronological","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":228,"visible":true,"property":"title"},{"width":225,"visible":true,"property":">>Gm"},{"width":279,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"zo?d"},{"width":163,"visible":true,"property":"=WD`"},{"width":179,"visible":true,"property":"~Dke"},{"width":200,"visible":true,"property":"pjT:"},{"width":539,"visible":true,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/e25c311421d1be8f9477576faf0d869063554b91dfc07d8f6885bc38f2bc876800023b96c2e5c8a0 b/.wrangler/state/v3/cache/default/blobs/e25c311421d1be8f9477576faf0d869063554b91dfc07d8f6885bc38f2bc876800023b96c2e5c8a0 new file mode 100644 index 0000000..11a47d5 --- /dev/null +++ b/.wrangler/state/v3/cache/default/blobs/e25c311421d1be8f9477576faf0d869063554b91dfc07d8f6885bc38f2bc876800023b96c2e5c8a0 @@ -0,0 +1 @@ +{"rows":[{"id":"b8f20d87-b39a-4064-a023-6abfca157c88","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"Quadram Institute, UK","Speaker":"Instructor: Evelien Adriaenssens","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"Viromics: Viral community analysis with metagenomics"},{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"},"Affiliation":"TAILOR Labs, Baylor College of Medicine","Speaker":"Instructor: Justin Clark ","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"8:30 AM - 12:00 PM","Name of speaker":["0cd38da4-0919-4b69-bb95-3d9a6c8ae352"],"Event":"Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"},{"id":"320fbd52-2c2b-475f-b2da-07864683da29","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"BBQ Welcome lunch at Evergreen"},{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Speaker":"Instructor: Ramy Aziz & Rebecca Wattam","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["c90b69ff-e994-403b-b885-59871db7734c"],"Event":"TBA (Genomics/PATRIC)"},{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"},"Affiliation":"Phages for Global Health","Speaker":"Instructor: Tobi Nagel & Fran Hodges","Location":"Purce Hall","Session":"Pre-conference workshop","Time":"1:00 PM - 5:00 PM","Name of speaker":["72bc1da3-cc5a-4293-8f3c-a8de212cf1ea"],"Event":"TBA (Biobanking)"},{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","Time block":"Sunday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"},"Session":"Pre-conference workshop","Time":"6:30 PM - 8:30 PM","Event":"(TBC) Workshop Extension"},{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Poster Session","Time":"6:00 PM - 9:00 PM","Event":"Informal Poster Session "},{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","Time block":"Sunday","Date & Time":{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"},"Session":"Social/Fun!","Time":"6:00 PM - 9:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"},"Location":"Purce Hall","Session":"Session 1: Plenary talks","Event":"Session 1: Plenary talks"},{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","Time block":"Monday","Length of talk":["15 min"],"Session":"Session 1: Plenary talks","Time":"8:30 AM - 8:45 AM","Event":"Phagebiotics Welcome!"},{"id":"9914254b-f117-427d-a18e-942c13978d1a","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Martin Loessner","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"8:45 AM - 9:05 AM","Name of speaker":["be36f174-7518-499c-aa4c-4fe8c08ecfd1"],"Event":"Bacteriophages by design: tiny killers and smart detectives"},{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Quadram Institute Bioscience","Speaker":"Evelien Adriaenssens","Accepted in airtable":true,"Session":"Session 1: Plenary talks","Time":"9:05 AM - 9:25 AM","Name of speaker":["3fbf782c-fea7-4d74-b14d-cfa7a5363f60"],"Event":"What’s going on with phage taxonomy and is it really necessary?"},{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"},"Speaker":"Chair: Teagan Brown & TBA","Location":"Purce Hall","Session":"Session 2: Ecology & Informatics I","Event":"Session 2: Ecology & Informatics I"},{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Lawrence Livermore National Laboratory, Livermore, CA","Speaker":"Gary Trubl","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:25 AM - 9:45 AM","Name of speaker":["cd337cdc-ca59-4f9e-a083-1b1f68fd180b"],"Event":"Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."},{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Harvard Medical School","Speaker":"Sian Owen","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"9:45 AM - 10:05 AM","Name of speaker":["3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c"],"Event":"Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"},{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Location":"CAB","Session":"Session 2: Ecology & Informatics I","Time":"10:05 AM - 10:25 AM","Event":"Break"},{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Globe Institute, University of Copenhagen, Denmark","Speaker":"Thomas Sicheritz-Pontén","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"10:25 AM - 10:45 AM","Name of speaker":["b06e9b76-ff8a-432b-86e7-029a793897b3"],"Event":"Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."},{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University at Buffalo","Speaker":"Kathryn Kauffman","Session":"Session 2: Ecology & Informatics I","Time":"10:45 AM - 11:05 AM","Name of speaker":["49b79643-2347-4528-a497-8f4ed336c33a"],"Event":"Uncovering the roles of phages in the oral microbiome"},{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jan Zheng","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:05 AM - 11:25 AM","Name of speaker":["5649ff80-cad7-451f-9b55-d297f1563090"],"Event":"Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"},{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phase Genomics, Inc.","Speaker":"Benjamin Auch","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:25 AM - 11:40 PM","Name of speaker":["93d533c0-875c-42c2-9a85-79199379e203"],"Event":"Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"},{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Genetics, Stanford University, Stanford, CA, USA","Speaker":"Yishay Pinto","Accepted in airtable":true,"Session":"Session 2: Ecology & Informatics I","Time":"11:40 AM - 11:55 AM","Name of speaker":["8df4db71-3c5c-40e0-9f4e-4671e81dbc71"],"Event":"Phage-inclusive profiling of human gut microbiomes with Phanta"},{"id":"43b54100-7643-4867-8231-1727a947cd4d","Time block":"Monday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 3: Phage defense","Event":"Session 3: Phage defense"},{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"University of Otago, New Zealand","Speaker":"Peter Fineran","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:00 PM - 1:20 PM","Name of speaker":["ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef"],"Event":"Anti-CRISPR strategies and their regulation"},{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"School of Biological Sciences, University of Southampton, United Kingdom","Speaker":"Franklin Nobrega","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:20 PM - 1:40 PM","Name of speaker":["2a748a12-8f17-4a75-80e4-6c5e5752effb"],"Event":"Co-occurrence and synergism of anti-phage defence systems"},{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Department of Biology, McMaster University, Hamilton, Canada","Speaker":"Leah Sather","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:40 PM - 1:55 PM","Name of speaker":["0210e1bb-0c5e-4db7-9169-44a85b61799c"],"Event":"Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"},{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"School of Biological Sciences","Speaker":"Thomas Todeschini","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"1:55 PM - 2:10 PM","Name of speaker":["fa7afdac-7554-4588-91c2-b3543ed1f35d"],"Event":"Kiwa modulates host nuclease activity for anti-viral defense"},{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Xu Peng","Accepted in airtable":true,"Session":"Session 3: Phage defense","Time":"2:10 PM - 2:25 PM","Name of speaker":["3a70c9b0-883f-411e-aeff-63e1b91c6175"],"Event":"How archaeal viruses inhibit host CRISPR-Cas immunity"},{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","Time block":"Monday","Length of talk":["20 min"],"Speaker":"Break","Time":"2:25 PM - 2:45 PM","Event":"Break"},{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"},"Speaker":"Chair: Sandra Morales & TBA","Location":"Purce Hall","Session":"Session 4: Phage therapy I","Event":"Session 4: Phage therapy I"},{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD","Speaker":"Scott Stibitz","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"2:45 PM - 3:05 PM","Name of speaker":["55bdd695-7c84-4da3-a08d-6b35cc79895b"],"Event":"Regulation of Phage Therapy by the FDA: CMC topics"},{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Phage Consulting, Sydney, New South Wales, Australia","Speaker":"Sandra Morales","Session":"Session 4: Phage therapy I","Time":"3:05 PM - 3:20 PM","Name of speaker":["ab627c93-11a9-4ef0-8deb-fa80f49f4a80"],"Event":"TBA (Phage therapy overview)"},{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"Queen Astrid Military Hospital, Belgium","Speaker":"Jean-Paul Pirnay","Session":"Session 4: Phage therapy I","Time":"3:20 PM - 3:40 PM","Name of speaker":["f3401535-46c5-44ba-852a-cf31eaaf7818"],"Event":"TBA (Phage therapy experience in Belgium)"},{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","Time block":"Monday","Length of talk":["15 min"],"Affiliation":"Yale University, USA","Speaker":"Benjamin Chan","Session":"Session 4: Phage therapy I","Time":"3:40 PM - 3:55 PM","Name of speaker":["8a9e19e8-f881-437b-8c9e-594d07a25d95"],"Event":"TBA (Phage therapy experience at Yale)"},{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","Time block":"Monday","Length of talk":["20 min"],"Affiliation":"TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Austen Terwilliger","Accepted in airtable":true,"Session":"Session 4: Phage therapy I","Time":"3:55 PM - 4:15 PM","Name of speaker":["71c70747-235c-4e79-a22c-8764e7076ccd"],"Event":"A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"},{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","Time block":"Monday","Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","Time block":"Monday","Session":"Special Session","Time":"5:30 PM & 6:00 PM buses","Event":"Head to bus depot and go downtown to movie theater"},{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","Time block":"Monday","Date & Time":{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"},"Speaker":"Panel: Martha Clokie, Diane Shader Smith, & more TBA. ","Location":"Downtown Olympia","Session":"Special Session","Time":"7:00 PM - 9:30 PM","Event":"Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "},{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","Time block":"Monday","Session":"Special Session","Time":"9:30 PM, 10:15 PM, 11 PM buses","Event":"Buses back to Evergreen"},{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"},"Speaker":"Chair: Gina Suh & TBA","Location":"Purce Hall","Session":"Session 5: Phage therapy II","Event":"Session 5: Phage therapy II"},{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","Time block":"Tuesday","Length of talk":["10 min."],"Session":"Session 5: Phage therapy II","Time":"8:30 AM - 8:40 AM","Event":"Introduction to keynote"},{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","Time block":"Tuesday","Length of talk":["60 min."],"Speaker":"[Keynote] Diane Shader Smith","Session":"Session 5: Phage therapy II","Time":"8:40 AM - 9:40 AM","Name of speaker":["c6f82a66-2bb7-4431-8cb8-6ded07aa301c"],"Event":"Keynote TBA (Phage therapy patient/parent experience)"},{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Phage Directory & Westmead Institute for Medical Research, Sydney, Australia","Speaker":"Jessica Sacher","Accepted in airtable":true,"Session":"Session 5: Phage therapy II","Time":"9:40 AM - 10:00 AM","Name of speaker":["745163f6-a397-4a4c-b4cb-154e2ef458a9"],"Event":"Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"},{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"University of Toronto","Speaker":"Greg German","Session":"Session 5: Phage therapy II","Time":"10:00 AM - 10:20 AM","Name of speaker":["099bc17c-8582-473b-97c2-1b14f1c8a444"],"Event":"TBA (Phage therapy experience in Canada)"},{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","Time block":"Tuesday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","Time block":"Tuesday","Length of talk":["15 min"],"Speaker":"Talk - Chris Shafer ","Accepted in airtable":false,"Session":"Session 5: Phage therapy II","Time":"10:40 AM - 10:55 AM","Name of speaker":["cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7"],"Event":"TBA (Patient experience)"},{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","Time block":"Tuesday","Length of talk":["5 min"],"Session":"Session 5: Phage therapy II","Time":"10:55 AM - 11:00 AM","Event":"Introduction to keynote"},{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","Time block":"Tuesday","Length of talk":["60 min."],"Affiliation":"IPATH, UCSD","Speaker":"[Keynote] Steffanie Strathdee","Session":"Session 5: Phage therapy II","Time":"11:00 AM - 12:00 PM","Name of speaker":["db83cbad-3504-4120-8eb2-a9e9f588fb29"],"Event":"TBA (Phage therapy experience in San Diego)"},{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","Time block":"Tuesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 6: Understanding & improving phage therapy","Event":"Session 6: Understanding & improving phage therapy"},{"id":"3918b591-a398-4a45-a808-38c6d79323c3","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"IPATH, UCSD","Speaker":"Katrine Whiteson","Session":"Session 6: Understanding & improving phage therapy","Time":"1:00 PM - 1:20 PM","Name of speaker":["9dce44b9-3367-4c00-91b7-147e7554c75c"],"Event":"Better together: Phage cocktails constrain the growth of Enterococcus"},{"id":"11b1742c-9e64-4811-a371-6bf962e05694","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium","Speaker":"Sabrina Green","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:20 PM - 1:40 PM","Name of speaker":["dddc50d1-cf21-42a5-99b9-b265b09b51d2"],"Event":"Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"},{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD","Speaker":"Kevin Burke","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:40 PM - 1:55 PM","Name of speaker":["e2672fc8-3000-4de3-b372-baa29bff31cb"],"Event":"Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"},{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, CA 92182, USA","Speaker":"Tiffany Luong","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"1:55 PM - 2:10 PM","Name of speaker":["70862f59-9b2b-498e-a110-eca0fa064e94"],"Event":"Lost in circulation: Improving the in vivo activity of phage cocktails"},{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany","Speaker":"Magdalena Unterer","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:10 PM - 2:25 PM","Name of speaker":["9e27a8ec-a3b8-4167-9217-d7f4c8bc9008"],"Event":"Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"},{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Rime Bioinformatics SAS, Palaiseau, France","Speaker":"Antoine Culot","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:25 PM - 2:40 PM ","Name of speaker":["fc603774-7a1b-4ee5-987e-37afce4b85bd"],"Event":"Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"},{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Jiemin Du","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"2:40 PM - 2:55 PM","Name of speaker":["e757271b-ff33-407a-89b8-8cd37f0d9f7f"],"Event":"Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"},{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","Time block":"Tuesday","Length of talk":["20 min"],"Time":"2:55 PM - 3:15 PM","Event":"Break"},{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD","Speaker":"Susan Lehman","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:15 PM - 3:35 PM","Name of speaker":["e868601c-0a86-4534-862a-feea152760d9"],"Event":"A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"},{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA","Speaker":"Katarzyna Danis-Włodarczyk","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:35 PM - 3:50 PM","Name of speaker":["46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4"],"Event":"Topical phage treatment of a P. aeruginosa mouse wound-infection model"},{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","Time block":"Tuesday","Length of talk":["15 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA","Speaker":"Qingquan (Kevin) Chen","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"3:50 PM - 4:05 PM","Name of speaker":["be03672d-3029-461b-81ca-9fa90eb3248b"],"Event":"Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"},{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland","Speaker":"Gregory Resch","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:05 PM - 4:25 PM","Name of speaker":["e9bd9655-a26e-48a5-9afb-16ba0082c88f"],"Event":"Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"},{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","Time block":"Tuesday","Length of talk":["20 min"],"Affiliation":"Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA","Speaker":"Paul Bollyky","Accepted in airtable":true,"Session":"Session 6: Understanding & improving phage therapy","Time":"4:25 PM - 4:45 PM","Name of speaker":["99674cc4-e81f-45a2-912b-50cefd63c4e9"],"Event":"Circulating bacteriophages can identify bacterial pathogens in human infections"},{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","Time block":"Tuesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"5:00 PM - 6:00 PM","Event":"Dinner"},{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","Time block":"Tuesday","Session":"Poster Session","Time":"6:00 PM - 7:00 PM","Event":"Informal Poster session "},{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","Time block":"Tuesday","Length of talk":["120 min"],"Date & Time":{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"},"Speaker":"Evergreen Chronology of Inspiration Panel","Location":"Purce Hall","Session":"Special Session","Time":"7:00 PM - 9:00 PM","Event":"TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."},{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","Time block":"Tuesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Celebration/Dancing"},{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 7: Phage and the immune system","Event":"Session 7: Phage and the immune system"},{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Department of Biology, San Diego State University, San Diego, USA","Speaker":"Dwayne Roach","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:30 AM - 8:50 AM","Name of speaker":["47154f21-f3d7-4f67-bc63-044dcd457522"],"Event":"The Viral Immunogenicity of Clinically Relevant Bacteriophages"},{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland","Speaker":"Krystyna Dabrowska","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"8:50 AM - 9:10 AM","Name of speaker":["d043af99-31e1-4899-b2d6-e7aebfb09289"],"Event":"PhageScan: identification of major phage epitopes that are immunogenic for humans"},{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Philip Lauman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:10 AM - 9:25 AM","Name of speaker":["a5125779-3bd8-4770-9ddd-a7de0bfec554"],"Event":"O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"},{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"College of Life and Environmental Sciences, University of Exeter","Speaker":"Meaghan Castledine","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:25 AM - 9:40 AM","Name of speaker":["e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0"],"Event":"Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"},{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Léa Zinsli","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:40 AM - 9:55 AM","Name of speaker":["cc428e33-a0a8-427d-a52c-e16bf7a5b030"],"Event":"Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"},{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA","Speaker":"Thomas Smytheman","Accepted in airtable":true,"Session":"Session 7: Phage and the immune system","Time":"9:55 AM - 10:15 AM","Name of speaker":["8fdd1c46-143b-40aa-8887-ff385fcbff06"],"Event":"Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"},{"id":"944c9a63-de56-4d06-b8cd-06558125646e","Time block":"Wednesday","Length of talk":["20 min"],"Time":"10:15 AM - 10:35 AM","Event":"Break"},{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 8: Molecular phage biology I","Event":"Session 8: Molecular phage biology I"},{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","Time block":"Wednesday","Length of talk":["20 min"],"Affiliation":"The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA","Speaker":"Vivek Mutalik","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:35 AM - 10:55 AM","Name of speaker":["26635071-15db-4630-aed0-709d6a5af51e"],"Event":"Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"},{"id":"4e149194-e542-4204-8062-fd608eec8872","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland","Speaker":"Enea Maffei","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"10:55 AM - 11:10 AM","Name of speaker":["da86622d-2762-4d2d-8b1d-c500e44dd712"],"Event":"Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"},{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA","Speaker":"Carmen Gu Liu","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:10 AM - 11:25 AM","Name of speaker":["1a4a441d-ee6b-45c9-8b84-0c60dd412cbe"],"Event":"Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"},{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany","Speaker":"Jordan Romeyer Dherbey","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:25 AM - 11:40 AM","Name of speaker":["b3d03715-7585-46a6-b31d-98440b9c5a86"],"Event":"Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"},{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","Time block":"Wednesday","Length of talk":["10 min."],"Affiliation":"ICMR- National Institute of Cholera and Enteric Diseases","Speaker":"Bani Mallick","Accepted in airtable":true,"Session":"Session 8: Molecular phage biology I","Time":"11:40 AM - 11:50 AM","Name of speaker":["909c2508-9568-4ba0-85b8-10247ee7f7fc"],"Event":"Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"},{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","Time block":"Wednesday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"},"Speaker":"Chair: Michael Koeris","Location":"Purce Hall","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Event":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","Time block":"Wednesday","Length of talk":["20 min"],"Speaker":"Michael Koeris","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:00 PM - 1:20 PM","Name of speaker":["a3dd1393-507a-4b0f-890f-c2dae8a37e70"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"PhagePro, Inc","Speaker":"Minmin Yen","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:20 PM - 1:35 PM","Name of speaker":["a7b77d41-ff9a-4650-9e3f-d4d70015a202"],"Event":"Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"},{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"Locus Biosciences","Speaker":"Nick Conley","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:35 PM - 1:50 PM","Name of speaker":["3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","Time block":"Wednesday","Length of talk":["15 min"],"Affiliation":"University of Alberta","Speaker":"Dominic Sauvageau","Session":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)","Time":"1:50 PM - 2:05 PM","Name of speaker":["13ce51a7-4f96-4116-b462-45503a847bec"],"Event":"TBA (Phage manufacturing special panel session)"},{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"},"Session":"Social/Fun!","Time":"2:05 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt"},{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","Time block":"Wednesday","Location":"TBA","Session":"Food!","Time":"5:00 PM - 7:00 PM","Event":"Dinner (TBA)"},{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","Time block":"Wednesday","Date & Time":{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"},"Session":"Poster Session","Time":"7:00 PM - 9:00 PM","Event":"Formal Poster Session/Mixer I"},{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"},"Session":"Social/Fun!","Time":"6:30 PM - ?","Event":"Phage sculpture building"},{"id":"7781829a-04c3-488d-8c00-67cbfa195279","Time block":"Wednesday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"},"Session":"Social/Fun!","Time":"9:00 PM - ?","Event":"Dancing "},{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 10: Ecology & Informatics II","Event":"Session 10: Ecology & Informatics II"},{"id":"ac725466-3339-4427-9079-434d80ade7b9","Time block":"Thursday","Length of talk":["20 min"],"Speaker":"Ryan Cook","Session":"Session 10: Ecology & Informatics II","Time":"8:30 AM - 8:50 AM","Name of speaker":["3382a9f0-80c5-473c-9528-80821b7dd0f6"],"Event":"TBA (Phage ecology)"},{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Leicester","Speaker":"Sophie Harrison","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"8:50 AM - 9:05 AM","Name of speaker":["c69f71c3-ecf0-439e-af81-b6429d26e631"],"Event":"Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"},{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology and Immunology, McGill University, Montreal, Canada","Speaker":"Michael Shamash","Accepted in airtable":true,"Session":"Session 10: Ecology & Informatics II","Time":"9:05 AM - 9:20 AM","Name of speaker":["6bb08bf3-d20b-403c-8138-58a25cb2c6d0"],"Event":"Gut virome colonization dynamics in a humanized mouse model of early life development"},{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","Time block":"Thursday","Length of talk":["60 min."],"Speaker":"[Keynote] Martha Clokie","Accepted in airtable":false,"Session":"Session 10: Ecology & Informatics II","Time":"9:20 AM - 10:20 AM","Name of speaker":["26ff67d0-686a-4347-a52e-f0c6a08d52e3"],"Event":"TBA"},{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","Time block":"Thursday","Length of talk":["20 min"],"Time":"10:20 AM - 10:40 AM","Event":"Break"},{"id":"5489e88d-538f-4a44-804d-ee83ee558203","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"},"Speaker":"Chair: Hany Anany & TBA","Location":"Purce Hall","Session":"Session 11: Phage in food and agriculture","Event":"Session 11: Phage in food and agriculture"},{"id":"2e95f701-433d-46d7-b576-3763b363edf7","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"KU Leuven, Belgium","Speaker":"Jeroen Wagemans","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"10:40 AM - 11:00 AM","Name of speaker":["25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202"],"Event":"Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"},{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Research Scientist","Speaker":"Hany Anany","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:00 AM - 11:20 AM","Name of speaker":["99692a27-5cb0-46c6-b341-74f5d6701ad2"],"Event":"Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"},{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Department of Food Science, University of Tennessee, Knoxville, TN","Speaker":"Thomas Denes","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:20 AM - 11:40 AM","Name of speaker":["5d4dea8f-f420-4179-9773-78fcd7929c63"],"Event":"Overcoming hurdles for phage applications in food safety with directed evolution"},{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"SCIPHAGE","Speaker":"Viviana Clavijo","Accepted in airtable":true,"Session":"Session 11: Phage in food and agriculture","Time":"11:40 AM - 11:55 AM","Name of speaker":["81f9417a-d86c-4e6b-b125-481ad425ca35"],"Event":"SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""},{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","Time block":"Thursday","Length of talk":["60 min."],"Location":"CAB","Session":"Food!","Time":"12:00 PM - 1:00 PM","Event":"Lunch"},{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"},"Speaker":"Chair: TBA","Location":"Purce Hall","Session":"Session 12: Molecular phage biology II","Event":"Session 12: Molecular phage biology II"},{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","Time block":"Thursday","Length of talk":["20 min"],"Affiliation":"Max Planck Institute for Terrestrial Microbiology, Marburg, Germany","Speaker":"Katharina Höfer","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:00 PM - 1:20 PM","Name of speaker":["f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae"],"Event":"Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"},{"id":"581507dc-533e-4600-9215-03f0e000393d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"University of Copenhagen","Speaker":"Janine Bowring","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:20 PM - 1:35 PM","Name of speaker":["03894d69-8250-477b-bdb9-279325e1db10"],"Event":"Genomic mobilisation by rRNA operon recombination – another route of phage transduction"},{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"School of Life Sciences, University of Warwick, Coventry, UK","Speaker":"Rebecca Quinn","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:35 PM - 1:50 PM","Name of speaker":["163cfe1e-0c11-4f53-ae42-d91dd3a1d516"],"Event":"Phage tRNAs Subvert Host Resistance"},{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia","Speaker":"Valentina Andrea Floccari","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"1:50 PM - 2:05 PM","Name of speaker":["24959fbb-214c-49cb-aac7-573850ffcc34"],"Event":"Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"},{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","Time block":"Thursday","Length of talk":["15 min"],"Affiliation":"Department of Biology, University of Idaho","Speaker":"Tracey Peters","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:05 PM - 2:20 PM","Name of speaker":["7d737977-f461-42e3-b38d-44612cf790c4"],"Event":"Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."},{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Department of Medicine, McMaster University","Speaker":"Gayatri Nair","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:20 PM - 2:30 PM","Name of speaker":["f90b3af0-02da-4596-8063-5fb6fbbb1b59"],"Event":"Biasing Bacteriophage Behaviour"},{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","Time block":"Thursday","Length of talk":["10 min."],"Affiliation":"Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada","Speaker":"Jieting Lin","Accepted in airtable":true,"Session":"Session 12: Molecular phage biology II","Time":"2:30 PM - 2:40 PM","Name of speaker":["a61583c9-528b-4adc-962e-e6a287b2c676"],"Event":"Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"},{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","Time block":"Thursday","Length of talk":["15 min"],"Session":"Session 12: Molecular phage biology II","Time":"2:40 PM - 2:55 PM","Event":"Closing Remarks / Future Meeting"},{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Poster Session","Time":"3 PM - 5:00 PM","Event":"Formal Poster Session/Mixer II "},{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","Time block":"Thursday","Date & Time":{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"},"Session":"Social/Fun!","Time":"3 PM - 5:00 PM","Event":"TAILOR Labs Phage Scavenger Hunt: Hike to beach"},{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","Time block":"Thursday","Date & Time":{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"},"Location":"Olympia","Session":"Social/Fun!","Time":"5 PM - 9:00 PM","Event":"Adventure out into Olympia for dinner and an evening on the water. "},{"id":"c39de849-001b-4ae2-866a-68f4655eed15","Time block":"Friday","Date & Time":{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"},"Session":"Social/Fun!","Event":"Mt. Rainier hike!"}],"schema":{";:c\\":{"name":"Time block","type":"select","options":[{"id":"UF^H","color":"blue","value":"Sunday"},{"id":">K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["Quadram Institute, UK"]],"LQJ@":[["Instructor: Evelien Adriaenssens"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Viromics: Viral community analysis with metagenomics"]]},"created_time":1687798566572,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","version":492,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"08:30"}]]]],"B:Eq":[["TAILOR Labs, Baylor College of Medicine"]],"LQJ@":[["Instructor: Justin Clark "]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["8:30 AM - 12:00 PM"]],"zo?d":[["‣",[["p","0cd38da4-0919-4b69-bb95-3d9a6c8ae352","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["Demystifying bioinformatics: An introduction to sequence analysis for the experimental biologist"]]},"created_time":1687798566573,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"320fbd52-2c2b-475f-b2da-07864683da29","version":285,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:30 - 1:30 PM"]],"title":[["BBQ Welcome lunch at Evergreen"]]},"created_time":1687803510356,"last_edited_time":1689391195918,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d179a076-b691-46ad-a752-ce32dfa11bcd","version":391,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"LQJ@":[["Instructor: Ramy Aziz & Rebecca Wattam"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","c90b69ff-e994-403b-b885-59871db7734c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Genomics/PATRIC)"]]},"created_time":1687798574821,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1dda772e-1e87-4a0c-a582-a191ff304204","version":423,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"13:00"}]]]],"B:Eq":[["Phages for Global Health"]],"LQJ@":[["Instructor: Tobi Nagel & Fran Hodges"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["1:00 PM - 5:00 PM"]],"zo?d":[["‣",[["p","72bc1da3-cc5a-4293-8f3c-a8de212cf1ea","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"title":[["TBA (Biobanking)"]]},"created_time":1687798577371,"last_edited_time":1689390930725,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","version":188,"type":"page","properties":{";:c\\":[["Sunday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687799240915,"last_edited_time":1689391199074,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"13c797d1-ba0b-4ac7-b478-c5dbf8d89746","version":121,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"20:30","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:30"}]]]],"R\\:D":[["Pre-conference workshop"]],"pjT:":[["6:30 PM - 8:30 PM"]],"title":[["(TBC) Workshop Extension"]]},"created_time":1689380004207,"last_edited_time":1689391180080,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7cf59d05-a856-4633-978a-a56a880f0cf8","version":441,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:30 PM"]],"title":[["Informal Poster Session "]]},"created_time":1687803348235,"last_edited_time":1689390202574,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dd04346a-c48c-4d7c-89ac-5e1920576bfa","version":153,"type":"page","properties":{";:c\\":[["Sunday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-06","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-06","start_time":"18:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:00 PM - 9:00 PM"]],"~Dke":[["6:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1687803491538,"last_edited_time":1689390204139,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cce4e4b5-4323-46a2-a4be-2cdf086af1b5","version":155,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"09:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"08:30"}]]]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 1: Plenary talks"]],"title":[["Session 1: Plenary talks"]]},"created_time":1689384912122,"last_edited_time":1689390237972,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","version":238,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:30 AM - 8:45 AM"]],"~Dke":[["8:30 AM"]],"title":[["Phagebiotics Welcome!"]]},"created_time":1687799401390,"last_edited_time":1689390207153,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9914254b-f117-427d-a18e-942c13978d1a","version":281,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute for Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Martin Loessner"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["8:45 AM - 9:05 AM"]],"zo?d":[["‣",[["p","be36f174-7518-499c-aa4c-4fe8c08ecfd1","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:45 AM"]],"title":[["Bacteriophages by design: tiny killers and smart detectives"]]},"created_time":1687799405505,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29cbb222-2f1b-4e94-9906-136598c6a36e","version":253,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Quadram Institute Bioscience"]],"LQJ@":[["Evelien Adriaenssens"]],"PvYj":[["Yes"]],"R\\:D":[["Session 1: Plenary talks"]],"pjT:":[["9:05 AM - 9:25 AM"]],"zo?d":[["‣",[["p","3fbf782c-fea7-4d74-b14d-cfa7a5363f60","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1015"]],"title":[["What’s going on with phage taxonomy and is it really necessary?"]]},"created_time":1688512415031,"last_edited_time":1689390341817,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cb6a82e1-f25e-4c60-9655-1b0018b9e28e","version":165,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"09:25"}]]]],"LQJ@":[["Chair: Teagan Brown & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"title":[["Session 2: Ecology & Informatics I"]]},"created_time":1689385218335,"last_edited_time":1689390232321,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8c311bef-4951-42b3-af2b-64f4b1a8533b","version":200,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Lawrence Livermore National Laboratory, Livermore, CA"]],"LQJ@":[["Gary Trubl"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:25 AM - 9:45 AM"]],"zo?d":[["‣",[["p","cd337cdc-ca59-4f9e-a083-1b1f68fd180b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1035"]],"title":[["Soil virus forensics: throwing the kitchen sink at viruses in soils to characterize their activities."]]},"created_time":1687825729361,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9c16ce62-0fa0-40bc-9aa0-33562495d8e0","version":178,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Harvard Medical School"]],"LQJ@":[["Sian Owen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["9:45 AM - 10:05 AM"]],"zo?d":[["‣",[["p","3b51d0d2-1a50-4a75-8cd7-b01bc7e7c17c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1055"]],"title":[["Phage DISCOvery in technicolor reveals diverse and abundant phage populations exploiting conjugative plasmids"]]},"created_time":1689054446060,"last_edited_time":1689390349621,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"148eaf01-e456-4435-9314-0066f1d2d6de","version":233,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"Mf`v":[["CAB"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:05 AM - 10:25 AM"]],"~Dke":[["10:05 AM"]],"title":[["Break"]]},"created_time":1687799413680,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","version":301,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Globe Institute, University of Copenhagen, Denmark"]],"LQJ@":[["Thomas Sicheritz-Pontén"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:25 AM - 10:45 AM"]],"zo?d":[["‣",[["p","b06e9b76-ff8a-432b-86e7-029a793897b3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Phage genomes - taming the unrecognisable, uncategorisable and uncomparable."]]},"created_time":1687799423553,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"54c930a8-c75b-4cbb-91d1-ab759487c9a3","version":323,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University at Buffalo"]],"LQJ@":[["Kathryn Kauffman"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["10:45 AM - 11:05 AM"]],"zo?d":[["‣",[["p","49b79643-2347-4528-a497-8f4ed336c33a","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["2"]],"title":[["Uncovering the roles of phages in the oral microbiome"]]},"created_time":1688512413646,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fbae94a2-65d1-4db9-b48e-eb296215e7d3","version":324,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jan Zheng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:05 AM - 11:25 AM"]],"zo?d":[["‣",[["p","5649ff80-cad7-451f-9b55-d297f1563090","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Proof & Provenance: A federated biobank data platform for coordinating and sharing phages and results"]]},"created_time":1688512659324,"last_edited_time":1689390358222,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"29178e11-4d8e-4bfb-a185-ad6ef228be55","version":340,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phase Genomics, Inc."]],"LQJ@":[["Benjamin Auch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:25 AM - 11:40 PM"]],"zo?d":[["‣",[["p","93d533c0-875c-42c2-9a85-79199379e203","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1145"]],"title":[["Building the World’s Largest Phage-Host Interaction Atlas using Proximity Ligation Technology"]]},"created_time":1688087779835,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"435f531a-0c04-4507-8cdd-8ab2ba2098a6","version":397,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Genetics, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Yishay Pinto"]],"PvYj":[["Yes"]],"R\\:D":[["Session 2: Ecology & Informatics I"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","8df4db71-3c5c-40e0-9f4e-4671e81dbc71","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1130"]],"title":[["Phage-inclusive profiling of human gut microbiomes with Phanta"]]},"created_time":1688087778316,"last_edited_time":1689390374661,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"43b54100-7643-4867-8231-1727a947cd4d","version":169,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12-1"]],"title":[["Lunch"]]},"created_time":1687799445188,"last_edited_time":1689391206119,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6d745927-2a53-4afc-91c2-da7acdda2224","version":35,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"14:25","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 3: Phage defense"]],"title":[["Session 3: Phage defense"]]},"created_time":1689385244780,"last_edited_time":1689390383379,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","version":311,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Otago, New Zealand"]],"LQJ@":[["Peter Fineran"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","ede4538e-0ed8-4aa9-a95c-6bf2b6bfeaef","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1025"]],"title":[["Anti-CRISPR strategies and their regulation"]]},"created_time":1688509096732,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c67fb2e5-b1ab-4d56-af58-d8d56db18c88","version":310,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["School of Biological Sciences, University of Southampton, United Kingdom"]],"LQJ@":[["Franklin Nobrega"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","2a748a12-8f17-4a75-80e4-6c5e5752effb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1045"]],"title":[["Co-occurrence and synergism of anti-phage defence systems"]]},"created_time":1687799437045,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e693a814-7ac1-4664-b3c2-cee5d3549c5a","version":242,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, McMaster University, Hamilton, Canada"]],"LQJ@":[["Leah Sather"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","0210e1bb-0c5e-4db7-9169-44a85b61799c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1105"]],"title":[["Characterizing the mechanism of phage defense by the Hna system of Sinorhizobium meliloti"]]},"created_time":1687799411405,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a37f9cb1-3d9d-459a-a1c4-68bf475ea444","version":320,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Biological Sciences"]],"LQJ@":[["Thomas Todeschini"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","fa7afdac-7554-4588-91c2-b3543ed1f35d","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1120"]],"title":[["Kiwa modulates host nuclease activity for anti-viral defense"]]},"created_time":1687799425372,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","version":295,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Xu Peng"]],"PvYj":[["Yes"]],"R\\:D":[["Session 3: Phage defense"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","3a70c9b0-883f-411e-aeff-63e1b91c6175","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1135-1150"]],"title":[["How archaeal viruses inhibit host CRISPR-Cas immunity"]]},"created_time":1687799439413,"last_edited_time":1689390397502,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4b93b494-6ace-4fe2-91ae-5a11a4b2698f","version":235,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"LQJ@":[["Break"]],"pjT:":[["2:25 PM - 2:45 PM"]],"~Dke":[["2:40"]],"title":[["Break"]]},"created_time":1687803199153,"last_edited_time":1689390073928,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ddc014af-7eff-49b4-a2ed-beb831017849","version":69,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"16:15","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"14:45"}]]]],"LQJ@":[["Chair: Sandra Morales & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 4: Phage therapy I"]],"title":[["Session 4: Phage therapy I"]]},"created_time":1689385265953,"last_edited_time":1689390405405,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26cddb2d-015e-4a96-a665-5c3ae68f958f","version":244,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research (CBER), US Food and Drug Administration, Silver Spring, MD"]],"LQJ@":[["Scott Stibitz"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["2:45 PM - 3:05 PM"]],"zo?d":[["‣",[["p","55bdd695-7c84-4da3-a08d-6b35cc79895b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3"]],"title":[["Regulation of Phage Therapy by the FDA: CMC topics"]]},"created_time":1687804154218,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"634cc05d-293e-4549-a903-dfb8d19b9e4b","version":408,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Phage Consulting, Sydney, New South Wales, Australia"]],"LQJ@":[["Sandra Morales"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:05 PM - 3:20 PM"]],"zo?d":[["‣",[["p","ab627c93-11a9-4ef0-8deb-fa80f49f4a80","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["TBA (Phage therapy overview)"]]},"created_time":1689054379387,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","version":347,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["Queen Astrid Military Hospital, Belgium"]],"LQJ@":[["Jean-Paul Pirnay"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:20 PM - 3:40 PM"]],"zo?d":[["‣",[["p","f3401535-46c5-44ba-852a-cf31eaaf7818","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["340"]],"title":[["TBA (Phage therapy experience in Belgium)"]]},"created_time":1687825469236,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"20917259-a2cf-40c9-a72e-3374fe2062ea","version":304,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["15 min"]],"B:Eq":[["Yale University, USA"]],"LQJ@":[["Benjamin Chan"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:40 PM - 3:55 PM"]],"zo?d":[["‣",[["p","8a9e19e8-f881-437b-8c9e-594d07a25d95","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["4"]],"title":[["TBA (Phage therapy experience at Yale)"]]},"created_time":1688870910296,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b5683451-84aa-4bd7-a17d-b370db7980be","version":339,"type":"page","properties":{";:c\\":[["Monday"]],"=WD`":[["20 min"]],"B:Eq":[["TAILΦR Labs, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Austen Terwilliger"]],"PvYj":[["Yes"]],"R\\:D":[["Session 4: Phage therapy I"]],"pjT:":[["3:55 PM - 4:15 PM"]],"zo?d":[["‣",[["p","71c70747-235c-4e79-a22c-8764e7076ccd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["420-440"]],"title":[["A Retrospective, Observational Study of 18 Cases of Expanded Access Phage Therapy"]]},"created_time":1687804152062,"last_edited_time":1689390418383,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a3cd60e9-c694-46fe-a631-f24b44da1cdc","version":177,"type":"page","properties":{";:c\\":[["Monday"]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5-6"]],"title":[["Dinner"]]},"created_time":1687804161297,"last_edited_time":1689391211332,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fcead5f3-6947-423d-8683-0c65e83ed8f9","version":257,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["5:30 PM & 6:00 PM buses"]],"~Dke":[["6:10 PM - 7:00 PM"]],"title":[["Head to bus depot and go downtown to movie theater"]]},"created_time":1687804165074,"last_edited_time":1689391217591,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","version":542,"type":"page","properties":{";:c\\":[["Monday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-07","end_time":"21:30","time_zone":"Australia/Sydney","start_date":"2023-08-07","start_time":"19:00"}]]]],"LQJ@":[["Panel: Martha Clokie, Diane Shader Smith, & more TBA. "]],"Mf`v":[["Downtown Olympia"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:30 PM"]],"~Dke":[["7:00 PM - 9:30 PM"]],"title":[["Movie Screening + Speaker Panel — Salt in My Soul: An Unfinished Life. "]]},"created_time":1687804327137,"last_edited_time":1689390602372,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"38e5c223-4ca4-4b8b-9705-bef15987cbba","version":135,"type":"page","properties":{";:c\\":[["Monday"]],"R\\:D":[["Special Session"]],"pjT:":[["9:30 PM, 10:15 PM, 11 PM buses"]],"title":[["Buses back to Evergreen"]]},"created_time":1689385721108,"last_edited_time":1689391222881,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f54c4001-b09e-42c7-a852-4df56bf53e49","version":77,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"12:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"08:30"}]]]],"LQJ@":[["Chair: Gina Suh & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 5: Phage therapy II"]],"title":[["Session 5: Phage therapy II"]]},"created_time":1689385327067,"last_edited_time":1689390510980,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b540bde-6c3d-4c1a-b7bb-682eba1404df","version":158,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["10 min."]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:30 AM - 8:40 AM"]],"~Dke":[["8:30 AM"]],"title":[["Introduction to keynote"]]},"created_time":1687804872919,"last_edited_time":1689390517374,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"b3af1c11-d888-4292-b1c9-49004d6d90bd","version":418,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Diane Shader Smith"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["8:40 AM - 9:40 AM"]],"zo?d":[["‣",[["p","c6f82a66-2bb7-4431-8cb8-6ded07aa301c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["8:40"]],"title":[["Keynote TBA (Phage therapy patient/parent experience)"]]},"created_time":1687804875083,"last_edited_time":1689390533282,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","version":277,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Phage Directory & Westmead Institute for Medical Research, Sydney, Australia"]],"LQJ@":[["Jessica Sacher"]],"PvYj":[["Yes"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["9:40 AM - 10:00 AM"]],"zo?d":[["‣",[["p","745163f6-a397-4a4c-b4cb-154e2ef458a9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940"]],"title":[["Creating systems to safely scale phage therapy, from Phage Directory to Phage Australia"]]},"created_time":1687803978208,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","version":339,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["University of Toronto"]],"LQJ@":[["Greg German"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:00 AM - 10:20 AM"]],"zo?d":[["‣",[["p","099bc17c-8582-473b-97c2-1b14f1c8a444","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["10"]],"title":[["TBA (Phage therapy experience in Canada)"]]},"created_time":1688514223660,"last_edited_time":1689390541459,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"eaf6242a-4ccc-42d0-9df4-64516ae6da10","version":90,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10:20 AM"]],"title":[["Break"]]},"created_time":1688510819582,"last_edited_time":1689390856637,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bff2728f-9ccd-4f6d-80a0-bde174b96ac7","version":440,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"LQJ@":[["Talk - Chris Shafer "]],"PvYj":[["No"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:40 AM - 10:55 AM"]],"zo?d":[["‣",[["p","cfe1c1a7-e0a0-4913-92e5-bfb41f4d3ef7","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1040"]],"title":[["TBA (Patient experience)"]]},"created_time":1688870878668,"last_edited_time":1689390547176,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","version":272,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["5 min"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["10:55 AM - 11:00 AM"]],"~Dke":[["1055"]],"title":[["Introduction to keynote"]]},"created_time":1687804891380,"last_edited_time":1689390854168,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"9919ea53-db46-44e6-b90a-37dac36054a2","version":295,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["[Keynote] Steffanie Strathdee"]],"R\\:D":[["Session 5: Phage therapy II"]],"pjT:":[["11:00 AM - 12:00 PM"]],"zo?d":[["‣",[["p","db83cbad-3504-4120-8eb2-a9e9f588fb29","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["11am"]],"title":[["TBA (Phage therapy experience in San Diego)"]]},"created_time":1687824627233,"last_edited_time":1689390550195,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cf907e2-8eef-44ff-8381-1aeba6f6fe20","version":96,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687824632680,"last_edited_time":1689391227320,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a27491c2-b694-46aa-887f-d9a12496fe32","version":41,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"16:50","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"title":[["Session 6: Understanding & improving phage therapy"]]},"created_time":1689385344622,"last_edited_time":1689390887337,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3918b591-a398-4a45-a808-38c6d79323c3","version":251,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["IPATH, UCSD"]],"LQJ@":[["Katrine Whiteson"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","9dce44b9-3367-4c00-91b7-147e7554c75c","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:05 AM"]],"title":[["Better together: Phage cocktails constrain the growth of Enterococcus"]]},"created_time":1687824774421,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"11b1742c-9e64-4811-a371-6bf962e05694","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biosystems, Laboratory of Gene Technology, KU Leuven, Leuven, Belgium"]],"LQJ@":[["Sabrina Green"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:20 PM - 1:40 PM"]],"zo?d":[["‣",[["p","dddc50d1-cf21-42a5-99b9-b265b09b51d2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["Making Antibiotics Great Again: Phage resistance in vivo correlates to resensitivity to antibiotics in pan-resistant Pseudomonas aeruginosa"]]},"created_time":1687824793158,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1cef6663-9aaf-4d01-a450-e5e863af04b8","version":361,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Wound Infections Department, Bacterial Diseases Branch, Walter Reed Army Institute of Research, Silver Spring, MD"]],"LQJ@":[["Kevin Burke"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:40 PM - 1:55 PM"]],"zo?d":[["‣",[["p","e2672fc8-3000-4de3-b372-baa29bff31cb","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["140"]],"title":[["Improvement of a therapeutic phage cocktail against multidrug-resistant Pseudomonas aeruginosa using directed evolution"]]},"created_time":1687803973490,"last_edited_time":1689390556348,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"3b88ee39-8868-4cfb-83bb-1f234e16724d","version":210,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, CA 92182, USA"]],"LQJ@":[["Tiffany Luong"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["1:55 PM - 2:10 PM"]],"zo?d":[["‣",[["p","70862f59-9b2b-498e-a110-eca0fa064e94","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["155"]],"title":[["Lost in circulation: Improving the in vivo activity of phage cocktails"]]},"created_time":1687825345820,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d72b0b26-a76a-426b-aec4-8c87f84ed27f","version":466,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Virology, Helmholtz Centre Munich, German Research Centre for Environmental Health, Neuherberg, Germany"]],"LQJ@":[["Magdalena Unterer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:10 PM - 2:25 PM"]],"zo?d":[["‣",[["p","9e27a8ec-a3b8-4167-9217-d7f4c8bc9008","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220-235"]],"title":[["Targeted single phage isolation reveals significant cell-to-cell variations in infection dynamics of phages"]]},"created_time":1687799421442,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"27a95a36-f080-43c2-8b8c-1a10c814f35a","version":298,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Rime Bioinformatics SAS, Palaiseau, France"]],"LQJ@":[["Antoine Culot"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:25 PM - 2:40 PM "]],"zo?d":[["‣",[["p","fc603774-7a1b-4ee5-987e-37afce4b85bd","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Enhancing phage therapy safety: Reliable and sensitive phage genome annotation with rTOOLS2 high-throughput pipeline"]]},"created_time":1689241721977,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0a75393a-f05c-441a-b978-0b033e7b3dcb","version":249,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Jiemin Du"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["2:40 PM - 2:55 PM"]],"zo?d":[["‣",[["p","e757271b-ff33-407a-89b8-8cd37f0d9f7f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["225-240"]],"title":[["Enhancing bacteriophage therapeutics through in situ production and release of heterologous antimicrobial effectors"]]},"created_time":1687824771581,"last_edited_time":1689390564585,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1efe468a-0193-4078-a1b4-66c36ef05846","version":165,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"pjT:":[["2:55 PM - 3:15 PM"]],"~Dke":[["240"]],"title":[["Break"]]},"created_time":1687824801783,"last_edited_time":1689390566824,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1569dba-23b6-46a0-9556-b71ff0727e26","version":172,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Center for Biologics Evaluation and Research, US Food and Drug Administration, Silver Spring MD"]],"LQJ@":[["Susan Lehman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:15 PM - 3:35 PM"]],"zo?d":[["‣",[["p","e868601c-0a86-4534-862a-feea152760d9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["3:00"]],"title":[["A Preclinical Two-Compartment Model of Localized Infections to Study the Effects of Phage Dosing Parameters on Bacterial Killing and Resistance Development"]]},"created_time":1687825464297,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a259cd5d-0a45-40d2-98d7-afb774a00554","version":243,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbial Infection and Immunity, The Ohio State University, Columbus, OH, USA"]],"LQJ@":[["Katarzyna Danis-Włodarczyk"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:35 PM - 3:50 PM"]],"zo?d":[["‣",[["p","46e50ea4-dfdf-4237-a0ff-5f0e22ae55a4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["320"]],"title":[["Topical phage treatment of a P. aeruginosa mouse wound-infection model"]]},"created_time":1687804889505,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4180d7bc-d11f-4d4f-be7b-801320cf94aa","version":225,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["15 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, Dept. of Medicine, Stanford University School of Medicine, Beckman Center, Stanford, CA"]],"LQJ@":[["Qingquan (Kevin) Chen"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["3:50 PM - 4:05 PM"]],"zo?d":[["‣",[["p","be03672d-3029-461b-81ca-9fa90eb3248b","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["335-350"]],"title":[["Pf bacteriophage hinder sputum antibiotic diffusion via electrostatic binding"]]},"created_time":1688514225625,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","version":268,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Laboratory of Bacteriophages and Phage Therapy, Center for Research and Innovation in Clinical Pharmaceutical Sciences (CRISP), Lausanne University Hospital (CHUV), Switzerland"]],"LQJ@":[["Gregory Resch"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:05 PM - 4:25 PM"]],"zo?d":[["‣",[["p","e9bd9655-a26e-48a5-9afb-16ba0082c88f","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Optical Trapping of Bacteria for Ultrafast Bacteriophage Lysis Detection at the Single-Cell Level"]]},"created_time":1687824778489,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8d47b39b-636b-47a2-ac35-5f3051689147","version":341,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["20 min"]],"B:Eq":[["Division of Infectious Diseases and Geographic Medicine, School of Medicine, Stanford University, Stanford, CA, USA"]],"LQJ@":[["Paul Bollyky"]],"PvYj":[["Yes"]],"R\\:D":[["Session 6: Understanding & improving phage therapy"]],"pjT:":[["4:25 PM - 4:45 PM"]],"zo?d":[["‣",[["p","99674cc4-e81f-45a2-912b-50cefd63c4e9","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:45 AM -10:05 PM"]],"title":[["Circulating bacteriophages can identify bacterial pathogens in human infections"]]},"created_time":1687824776474,"last_edited_time":1689390572213,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5df0843e-6388-403c-aff3-0fd826eb55bf","version":66,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 6:00 PM"]],"~Dke":[["5:00 PM - 6:00 PM"]],"title":[["Dinner"]]},"created_time":1687825706407,"last_edited_time":1689391232151,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","version":111,"type":"page","properties":{";:c\\":[["Tuesday"]],"R\\:D":[["Poster Session"]],"pjT:":[["6:00 PM - 7:00 PM"]],"~Dke":[["6:00 PM - 7:00 PM"]],"title":[["Informal Poster session "]]},"created_time":1687825710832,"last_edited_time":1689390577528,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"be032e3f-6934-41cb-82dc-c1c6f47f5142","version":504,"type":"page","properties":{";:c\\":[["Tuesday"]],"=WD`":[["120 min"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-08","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"19:00"}]]]],"LQJ@":[["Evergreen Chronology of Inspiration Panel"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Special Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TBA (Special event to commemorate Evergreen Phage history and Betty Kutter’s legacy). Panel: Martha Clokie, & more TBA."]]},"created_time":1687825713435,"last_edited_time":1689390587466,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3b72cc7-1135-4121-bb1a-e14befc8eb4f","version":100,"type":"page","properties":{";:c\\":[["Tuesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-08","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9 PM - ?"]],"title":[["Celebration/Dancing"]]},"created_time":1687825714716,"last_edited_time":1689390835462,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"fe4142c3-56a2-4b9a-88a3-da5214c41f16","version":51,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"10:15","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 7: Phage and the immune system"]],"title":[["Session 7: Phage and the immune system"]]},"created_time":1689385364350,"last_edited_time":1689390824571,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f695b133-d79e-4a28-806a-c7816b2b20e5","version":226,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Biology, San Diego State University, San Diego, USA"]],"LQJ@":[["Dwayne Roach"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","47154f21-f3d7-4f67-bc63-044dcd457522","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["The Viral Immunogenicity of Clinically Relevant Bacteriophages"]]},"created_time":1687803976098,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8f11570b-97d7-432c-9e08-8d81c364a9bd","version":173,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["Institute of Immunology and Experimental Therapy, Polish Academy of Sciences, Wrocław, Poland"]],"LQJ@":[["Krystyna Dabrowska"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["8:50 AM - 9:10 AM"]],"zo?d":[["‣",[["p","d043af99-31e1-4899-b2d6-e7aebfb09289","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["850"]],"title":[["PhageScan: identification of major phage epitopes that are immunogenic for humans"]]},"created_time":1687803197335,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","version":177,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Philip Lauman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:10 AM - 9:25 AM"]],"zo?d":[["‣",[["p","a5125779-3bd8-4770-9ddd-a7de0bfec554","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["910"]],"title":[["O-antigen binding Burkholderia phage KS12 controls infections by the emerging pathogen Burkholderia gladioli through selection for immunosensitive & avirulent bacterial populations"]]},"created_time":1687825352404,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"14d54749-63ad-4780-8bf0-bfd9ed9db335","version":236,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["College of Life and Environmental Sciences, University of Exeter"]],"LQJ@":[["Meaghan Castledine"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:25 AM - 9:40 AM"]],"zo?d":[["‣",[["p","e5db9d49-1f08-4c18-9893-fcaf0a7ee3e0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["925"]],"title":[["Antagonism between bacteriophages and macrophages increases bacteriophage resistance and inhibits evolution of bacteriophage infectivity"]]},"created_time":1687804887674,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbb449a2-7df2-4821-a94d-400b65aed1e0","version":198,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Léa Zinsli"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:40 AM - 9:55 AM"]],"zo?d":[["‣",[["p","cc428e33-a0a8-427d-a52c-e16bf7a5b030","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["210"]],"title":[["Deimmunization of peptidoglycan hydrolases for therapeutic treatment of systemic S. aureus infections"]]},"created_time":1687824768936,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a1307bb9-ff3e-4f34-a82b-0f00e80bb259","version":303,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Seattle Childrens Research Institute, Center for Global Infectious Disease Research, Seattle, WA"]],"LQJ@":[["Thomas Smytheman"]],"PvYj":[["Yes"]],"R\\:D":[["Session 7: Phage and the immune system"]],"pjT:":[["9:55 AM - 10:15 AM"]],"zo?d":[["‣",[["p","8fdd1c46-143b-40aa-8887-ff385fcbff06","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["940-955"]],"title":[["Host humoral immune responses to mycobacteriophages after repeated intravenous or aerosol delivery in a preclinical mouse model"]]},"created_time":1687825475724,"last_edited_time":1689390610309,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"944c9a63-de56-4d06-b8cd-06558125646e","version":155,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"pjT:":[["10:15 AM - 10:35 AM"]],"~Dke":[["955"]],"title":[["Break"]]},"created_time":1688512417106,"last_edited_time":1689390828482,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6e4eb13a-d602-4e87-9d63-ace351a6dd6d","version":35,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"10:35"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"title":[["Session 8: Molecular phage biology I"]]},"created_time":1689385380738,"last_edited_time":1689390817548,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c556f9b3-2a23-4bf2-a7cd-fff5434f949a","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"B:Eq":[["The UC Berkeley‐UCSF Graduate Program in Bioengineering, Berkeley, CA, USA"]],"LQJ@":[["Vivek Mutalik"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:35 AM - 10:55 AM"]],"zo?d":[["‣",[["p","26635071-15db-4630-aed0-709d6a5af51e","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9:25 AM"]],"title":[["Multicopy-suppressor screens reveal convergent evolution of single gene lysis proteins"]]},"created_time":1687799457743,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e149194-e542-4204-8062-fd608eec8872","version":249,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Institute of Food, Nutrition and Health, ETH Zurich, Zurich, Switzerland"]],"LQJ@":[["Enea Maffei"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["10:55 AM - 11:10 AM"]],"zo?d":[["‣",[["p","da86622d-2762-4d2d-8b1d-c500e44dd712","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["120"]],"title":[["Phage Paride exploits bacterial stress responses to kill antibiotic-tolerant cells"]]},"created_time":1687803193040,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cdb99eef-cdbd-4aaa-a678-dc089739c335","version":327,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Molecular Virology and Microbiology, Baylor College of Medicine, Houston, Texas, USA"]],"LQJ@":[["Carmen Gu Liu"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:10 AM - 11:25 AM"]],"zo?d":[["‣",[["p","1a4a441d-ee6b-45c9-8b84-0c60dd412cbe","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["135"]],"title":[["Functional metagenomic DNA libraries (IMMФRTL v1.0) screening for the isolation of novel genes against reactive oxygen species"]]},"created_time":1687825727042,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"394bdbe9-ca41-4113-b5e0-1fc9729d0e11","version":350,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Department Microbial Population Biology, Research Group Microbial Molecular Evolution, Max Planck Institute for Evolutionary Biology, Plön, Germany"]],"LQJ@":[["Jordan Romeyer Dherbey"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:25 AM - 11:40 AM"]],"zo?d":[["‣",[["p","b3d03715-7585-46a6-b31d-98440b9c5a86","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["150"]],"title":[["Stepwise evolution of E. coli C and PhiX174 reveals unexpected lipopolysaccharide (LPS) diversity"]]},"created_time":1687803195265,"last_edited_time":1689390617277,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bf1e263f-818f-4196-ab92-7167aeedecf8","version":365,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["10 min."]],"B:Eq":[["ICMR- National Institute of Cholera and Enteric Diseases"]],"LQJ@":[["Bani Mallick"]],"PvYj":[["Yes"]],"R\\:D":[["Session 8: Molecular phage biology I"]],"pjT:":[["11:40 AM - 11:50 AM"]],"zo?d":[["‣",[["p","909c2508-9568-4ba0-85b8-10247ee7f7fc","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["930-945"]],"title":[["Isolation and characterization of a novel lytic bacteriophage Sfk20 infecting Shigella flexneri and its synergistic effect in combination with ampicillin against biofilm"]]},"created_time":1687825724713,"last_edited_time":1689390622730,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"6148d44a-7933-4d98-8ce1-d22be7db73d1","version":42,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1687825725697,"last_edited_time":1689391247104,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0b92bc6a-a477-48f2-a2ce-60a8cf0897dd","version":61,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"14:05","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"13:00"}]]]],"LQJ@":[["Chair: Michael Koeris"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"title":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]]},"created_time":1689385397612,"last_edited_time":1689390775948,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","version":418,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["20 min"]],"LQJ@":[["Michael Koeris"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","a3dd1393-507a-4b0f-890f-c2dae8a37e70","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["355"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825471094,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"67f94fd5-db64-4d62-bea2-987fa2be2f69","version":190,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["PhagePro, Inc"]],"LQJ@":[["Minmin Yen"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","a7b77d41-ff9a-4650-9e3f-d4d70015a202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["410"]],"title":[["Addressing the challenges and harnessing opportunities in phage therapy manufacturing through the light of resource-limited settings"]]},"created_time":1687825467340,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"1bb96063-db6c-4cbe-af69-2d00c6a7b369","version":239,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["Locus Biosciences"]],"LQJ@":[["Nick Conley"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","3370fc8d-1af6-4727-b3f1-6e3a13d2b0e5","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["425"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825472550,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2216cb44-05b3-490e-84e6-f928b4ed2aef","version":298,"type":"page","properties":{";:c\\":[["Wednesday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Alberta"]],"LQJ@":[["Dominic Sauvageau"]],"R\\:D":[["Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","13ce51a7-4f96-4116-b462-45503a847bec","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["440-455"]],"title":[["TBA (Phage manufacturing special panel session)"]]},"created_time":1687825477708,"last_edited_time":1689390627228,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a604a22d-e533-4b87-bb55-09adc2af00ca","version":193,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"14:05"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["2:05 PM - 5:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt"]]},"created_time":1688513391651,"last_edited_time":1689390780669,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","version":175,"type":"page","properties":{";:c\\":[["Wednesday"]],"Mf`v":[["TBA"]],"R\\:D":[["Food!"]],"pjT:":[["5:00 PM - 7:00 PM"]],"~Dke":[["5:00 PM - 7:00 PM"]],"title":[["Dinner (TBA)"]]},"created_time":1688513047039,"last_edited_time":1689391243919,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"37f64d6c-856a-45d4-ae1c-787aa2eaac29","version":233,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-09","end_time":"21:00","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"19:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["7:00 PM - 9:00 PM"]],"~Dke":[["7:00 PM - 9:00 PM"]],"title":[["Formal Poster Session/Mixer I"]]},"created_time":1688513045165,"last_edited_time":1689390784399,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"f3ac9766-0302-4522-906d-45ad7a8ea060","version":114,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"18:30"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["6:30 PM - ?"]],"~Dke":[["6:30 PM - ?"]],"title":[["Phage sculpture building"]]},"created_time":1688881537706,"last_edited_time":1689390731272,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"7781829a-04c3-488d-8c00-67cbfa195279","version":72,"type":"page","properties":{";:c\\":[["Wednesday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-09","start_time":"21:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["9:00 PM - ?"]],"~Dke":[["9:00 PM - ?"]],"title":[["Dancing "]]},"created_time":1688513043334,"last_edited_time":1689390786731,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d85391-8d9a-4d23-9766-31b905bea52b","version":56,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"10:20","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"08:30"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"title":[["Session 10: Ecology & Informatics II"]]},"created_time":1689385411869,"last_edited_time":1689390736908,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"ac725466-3339-4427-9079-434d80ade7b9","version":319,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"LQJ@":[["Ryan Cook"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:30 AM - 8:50 AM"]],"zo?d":[["‣",[["p","3382a9f0-80c5-473c-9528-80821b7dd0f6","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["220"]],"title":[["TBA (Phage ecology)"]]},"created_time":1688512414351,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","version":386,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Leicester"]],"LQJ@":[["Sophie Harrison"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["8:50 AM - 9:05 AM"]],"zo?d":[["‣",[["p","c69f71c3-ecf0-439e-af81-b6429d26e631","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["235"]],"title":[["Uncovering the Viral Microbiome in COPD Lungs through Metagenomics"]]},"created_time":1688512411541,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"0be688d3-4b95-466c-99c7-1e10555047ca","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology and Immunology, McGill University, Montreal, Canada"]],"LQJ@":[["Michael Shamash"]],"PvYj":[["Yes"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:05 AM - 9:20 AM"]],"zo?d":[["‣",[["p","6bb08bf3-d20b-403c-8138-58a25cb2c6d0","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1115"]],"title":[["Gut virome colonization dynamics in a humanized mouse model of early life development"]]},"created_time":1687825730087,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","version":290,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"LQJ@":[["[Keynote] Martha Clokie"]],"PvYj":[["No"]],"R\\:D":[["Session 10: Ecology & Informatics II"]],"pjT:":[["9:20 AM - 10:20 AM"]],"zo?d":[["‣",[["p","26ff67d0-686a-4347-a52e-f0c6a08d52e3","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1"]],"title":[["TBA"]]},"created_time":1688514593287,"last_edited_time":1689390639043,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e888c902-3fb5-4e97-9db4-39c540023ab7","version":160,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"pjT:":[["10:20 AM - 10:40 AM"]],"~Dke":[["10"]],"title":[["Break"]]},"created_time":1688088803519,"last_edited_time":1689390791508,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5489e88d-538f-4a44-804d-ee83ee558203","version":69,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"11:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"10:40"}]]]],"LQJ@":[["Chair: Hany Anany & TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"title":[["Session 11: Phage in food and agriculture"]]},"created_time":1689385433340,"last_edited_time":1689390765437,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"2e95f701-433d-46d7-b576-3763b363edf7","version":232,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["KU Leuven, Belgium"]],"LQJ@":[["Jeroen Wagemans"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["10:40 AM - 11:00 AM"]],"zo?d":[["‣",[["p","25eb1c6b-da87-4cc5-82fc-3f0d8ec4f202","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1030"]],"title":[["Back to the roots: phage biocontrol of Agrobacterium causing hairy root disease in tomato production"]]},"created_time":1688512255481,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"d8bc49a0-033d-43f7-a57c-e3a267f55879","version":228,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Research Scientist"]],"LQJ@":[["Hany Anany"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:00 AM - 11:20 AM"]],"zo?d":[["‣",[["p","99692a27-5cb0-46c6-b341-74f5d6701ad2","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1050"]],"title":[["Biocontrol potential of bacteriophages to enhance food safety throughout the food production and processing chain"]]},"created_time":1688512253803,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"4e34ad83-a93f-4fad-a000-625e1e7ce92a","version":245,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Department of Food Science, University of Tennessee, Knoxville, TN"]],"LQJ@":[["Thomas Denes"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:20 AM - 11:40 AM"]],"zo?d":[["‣",[["p","5d4dea8f-f420-4179-9773-78fcd7929c63","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1110"]],"title":[["Overcoming hurdles for phage applications in food safety with directed evolution"]]},"created_time":1688512251773,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"182fb594-883e-45ca-9b0a-f7dfb57f2ba7","version":257,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["SCIPHAGE"]],"LQJ@":[["Viviana Clavijo"]],"PvYj":[["Yes"]],"R\\:D":[["Session 11: Phage in food and agriculture"]],"pjT:":[["11:40 AM - 11:55 AM"]],"zo?d":[["‣",[["p","81f9417a-d86c-4e6b-b125-481ad425ca35","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1125"]],"title":[["SCIPHAGE improving global health with the power of phages: \"Advancements in Phage-Based Therapies for Animal Health in Colombia: Focus on Poultry and Aquaculture\""]]},"created_time":1687825723153,"last_edited_time":1689390645577,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"e79b83e8-55bc-4750-b4f7-9646647d8d19","version":90,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["60 min."]],"Mf`v":[["CAB"]],"R\\:D":[["Food!"]],"pjT:":[["12:00 PM - 1:00 PM"]],"~Dke":[["12:00 PM - 1:00 PM"]],"title":[["Lunch"]]},"created_time":1688088805159,"last_edited_time":1689391256910,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"52d231d7-39ee-41ac-92e4-24332942f9dd","version":40,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"14:55","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"13:00"}]]]],"LQJ@":[["Chair: TBA"]],"Mf`v":[["Purce Hall"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"title":[["Session 12: Molecular phage biology II"]]},"created_time":1689385453912,"last_edited_time":1689390755122,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"87fe14a6-6042-483b-8261-a3d7a9596298","version":225,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["20 min"]],"B:Eq":[["Max Planck Institute for Terrestrial Microbiology, Marburg, Germany"]],"LQJ@":[["Katharina Höfer"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:00 PM - 1:20 PM"]],"zo?d":[["‣",[["p","f89236e9-9e0f-4cc5-9f81-8d0e3cfbb7ae","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1pm"]],"title":[["Discovery of a molecular glue to link RNAs with proteins in E. coli during T4 phage infection"]]},"created_time":1687799450907,"last_edited_time":1689390664639,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"581507dc-533e-4600-9215-03f0e000393d","version":329,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["University of Copenhagen"]],"LQJ@":[["Janine Bowring"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:20 PM - 1:35 PM"]],"zo?d":[["‣",[["p","03894d69-8250-477b-bdb9-279325e1db10","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["830"]],"title":[["Genomic mobilisation by rRNA operon recombination – another route of phage transduction"]]},"created_time":1687825728292,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"cfde895b-a32e-4fef-8c75-85755601e11d","version":294,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["School of Life Sciences, University of Warwick, Coventry, UK"]],"LQJ@":[["Rebecca Quinn"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:35 PM - 1:50 PM"]],"zo?d":[["‣",[["p","163cfe1e-0c11-4f53-ae42-d91dd3a1d516","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["205"]],"title":[["Phage tRNAs Subvert Host Resistance"]]},"created_time":1687799408892,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","version":222,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Microbiology, Biotechnical Faculty, University of Ljubljana, Slovenia"]],"LQJ@":[["Valentina Andrea Floccari"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["1:50 PM - 2:05 PM"]],"zo?d":[["‣",[["p","24959fbb-214c-49cb-aac7-573850ffcc34","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["845"]],"title":[["Aberrant Bacillus subtilis cell’s morphology emerges as consequence of active lysogeny"]]},"created_time":1687825727796,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"8db54920-85c2-457c-9ba7-9901243cfbbc","version":248,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"B:Eq":[["Department of Biology, University of Idaho"]],"LQJ@":[["Tracey Peters"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:05 PM - 2:20 PM"]],"zo?d":[["‣",[["p","7d737977-f461-42e3-b38d-44612cf790c4","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["915"]],"title":[["Directed evolution using Appelmans allows for induction and evolution of prophages with expanded host ranges."]]},"created_time":1688512649947,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"471524da-ac95-4e70-834e-cad6e07afe1f","version":310,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Department of Medicine, McMaster University"]],"LQJ@":[["Gayatri Nair"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:20 PM - 2:30 PM"]],"zo?d":[["‣",[["p","f90b3af0-02da-4596-8063-5fb6fbbb1b59","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["9"]],"title":[["Biasing Bacteriophage Behaviour"]]},"created_time":1687799452995,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"26eaaf74-61d5-4b57-a7c1-d644e164302e","version":267,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["10 min."]],"B:Eq":[["Faculty of Veterinary Medicine, University of Calgary, Calgary, Alberta, Canada"]],"LQJ@":[["Jieting Lin"]],"PvYj":[["Yes"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:30 PM - 2:40 PM"]],"zo?d":[["‣",[["p","a61583c9-528b-4adc-962e-e6a287b2c676","a8000652-f2c8-4adc-9353-cd51c033cc1f"]]]],"~Dke":[["1140-1155"]],"title":[["Characterizing physiology and genomics of Tequintavirus with anti-Shiga toxin-producing Escherichia coli infectivity and their tail genes for host recognition"]]},"created_time":1688878455809,"last_edited_time":1689390657923,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"bd297533-496f-4d20-b81f-7ad4e0756397","version":318,"type":"page","properties":{";:c\\":[["Thursday"]],"=WD`":[["15 min"]],"R\\:D":[["Session 12: Molecular phage biology II"]],"pjT:":[["2:40 PM - 2:55 PM"]],"~Dke":[["250"]],"title":[["Closing Remarks / Future Meeting"]]},"created_time":1688514591043,"last_edited_time":1689390673609,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"a96898de-d384-45ec-961c-8f01fdb5dc73","version":255,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Poster Session"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:05 PM - 5:00 PM"]],"title":[["Formal Poster Session/Mixer II "]]},"created_time":1688088808511,"last_edited_time":1689390674834,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"32e0ad0e-d72f-48f0-bba4-6a3707604aaa","version":261,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-10","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"15:00"}]]]],"R\\:D":[["Social/Fun!"]],"pjT:":[["3 PM - 5:00 PM"]],"~Dke":[["3:00 PM - 5:00 PM"]],"title":[["TAILOR Labs Phage Scavenger Hunt: Hike to beach"]]},"created_time":1688088811059,"last_edited_time":1689390678171,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"69f8b658-9cfb-407d-90c6-3efc9b96835b","version":183,"type":"page","properties":{";:c\\":[["Thursday"]],">>Gm":[["‣",[["d",{"type":"datetime","time_zone":"Australia/Sydney","start_date":"2023-08-10","start_time":"17:00"}]]]],"Mf`v":[["Olympia"]],"R\\:D":[["Social/Fun!"]],"pjT:":[["5 PM - 9:00 PM"]],"title":[["Adventure out into Olympia for dinner and an evening on the water. "]]},"created_time":1688513305939,"last_edited_time":1689390724489,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"aaadd772-f557-46da-b2e2-e15e2c067873","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"},{"value":{"id":"c39de849-001b-4ae2-866a-68f4655eed15","version":84,"type":"page","properties":{";:c\\":[["Friday"]],">>Gm":[["‣",[["d",{"type":"datetimerange","end_date":"2023-08-11","end_time":"17:00","time_zone":"Australia/Sydney","start_date":"2023-08-11","start_time":"09:00"}]]]],"R\\:D":[["Social/Fun!"]],"title":[["Mt. Rainier hike!"]]},"created_time":1689388334090,"last_edited_time":1689390721716,"parent_id":"e38e688d-620a-4b0f-81d3-73735e0693d8","parent_table":"collection","alive":true,"created_by_table":"notion_user","created_by_id":"7d750b62-7bbb-4980-9061-0db6317fc6a9","last_edited_by_table":"notion_user","last_edited_by_id":"5eb42727-2109-44be-b04d-578a4950ef50","space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},"role":"reader"}],"columns":[{"width":201,"visible":false,"property":">>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"FmK{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm":{"name":"Date & Time","type":"date","time_format":"LT"},"B:Eq":{"name":"Affiliation","type":"text"},"LQJ@":{"name":"Speaker","type":"text"},"Mf`v":{"name":"Location","type":"text"},"PvYj":{"name":"Accepted in airtable","type":"checkbox"},"R\\:D":{"name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},"_HTj":{"name":"Planned session","type":"rollup","target_property":"x>Gm","name":"Date & Time","type":"date","time_format":"LT"},{"width":218,"visible":true,"property":"R\\:D","name":"Session","type":"select","options":[{"id":"f7bab34a-8ff7-47d1-92c8-03d17a64b4e4","color":"blue","value":"Session 1: Plenary talks"},{"id":"bfb3fa1d-1a38-44e4-ad37-9060b21e638e","color":"yellow","value":"Session 2: Ecology & Informatics I"},{"id":"a3a7729d-a940-4800-975d-75d6ff2e8d2f","color":"green","value":"Session 3: Phage defense"},{"id":"33a645e1-9e96-4845-a45d-d3a22a6c4585","color":"purple","value":"Session 4: Phage therapy I"},{"id":"5a4ffecb-568b-4e38-8d75-b6aab5486270","color":"purple","value":"Session 5: Phage therapy II"},{"id":"1d433634-1371-42e4-985f-c96721f38bb7","color":"green","value":"Session 6: Understanding & improving phage therapy"},{"id":"ea2f304f-ffc4-468b-985c-ee59b6e326b4","color":"green","value":"Session 7: Phage and the immune system"},{"id":"ec8a344d-c19a-4560-8c5e-775fb042c919","color":"green","value":"Session 8: Molecular phage biology I"},{"id":"75a970ea-47e5-427a-82d0-843e573be47c","color":"purple","value":"Session 9: Phage therapy manufacturing (Chair: Mike Koeris)"},{"id":"a810b0cb-4b6f-4031-b3ac-0927c0625760","color":"yellow","value":"Session 10: Ecology & Informatics II"},{"id":"8d592c43-9f68-42a0-8ba7-11e16089556b","color":"orange","value":"Session 11: Phage in food and agriculture"},{"id":"344a5822-020a-48c0-aa5b-6fa6e199f504","color":"green","value":"Session 12: Molecular phage biology II"},{"id":"08e7eee2-53d4-4b85-8497-54e794996bd0","color":"yellow","value":"Sunday AM Workshops"},{"id":"e54968c6-7e9d-44d1-9b8d-f6b6f8a8cc16","color":"default","value":"Sunday PM Workshops"},{"id":"5910b557-4722-4c70-9945-11662c45ee3a","color":"yellow","value":"Workshop: Bioinformatics/PATRIC"},{"id":"6f73932f-6eee-4919-8653-6875cc0d4ddc","color":"purple","value":"Workshop: Biobanking"},{"id":"42bb22ca-81d2-4569-8c23-7bfe40a27d09","color":"red","value":"Poster Session"},{"id":"1671c585-66e8-424d-9745-65a4fc989668","color":"pink","value":"Social/Fun!"},{"id":"ebdecb9f-61bc-4ccd-a29e-0bb480927b49","color":"blue","value":"Special Session"},{"id":"163e8339-9b09-4710-a4ea-da1342f84153","color":"gray","value":"Pre-conference workshop"},{"id":"d93e00ef-4e8d-4816-a9b9-c35ba4f417dc","color":"green","value":"Food!"}]},{"width":193,"visible":true,"property":"pjT:","name":"Time","type":"text"},{"width":228,"visible":true,"property":"title","name":"Event","type":"title"},{"width":200,"visible":true,"property":"LQJ@","name":"Speaker","type":"text"},{"width":200,"visible":true,"property":"B:Eq","name":"Affiliation","type":"text"},{"width":200,"visible":true,"property":"Mf`v","name":"Location","type":"text"},{"width":163,"visible":false,"property":"=WD`","name":"Length of talk","type":"multi_select","options":[{"id":"t_K]","color":"brown","value":"60 min."},{"id":"HC`s","color":"gray","value":"20 min"},{"id":"}W}s","color":"red","value":"15 min"},{"id":"eIT{","color":"yellow","value":"10 min."},{"id":"8568b572-ec79-478d-aa09-5855c8e9d17c","color":"green","value":"5 min"},{"id":"07274503-81fc-4fad-bacf-80dbd07c696c","color":"default","value":"120 min"},{"id":"8a416bbb-cd66-4755-b790-fbd84708774c","color":"blue","value":"30 min"},{"id":"9d9836a7-4edf-4d7b-974e-163889f71b84","color":"pink","value":"35 min"}]},{"width":200,"visible":false,"property":"sxe;","name":"Name of speaker","type":"relation","version":"v2","autoRelate":{"enabled":false},"collection_id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","collection_pointer":{"id":"7ce8cecf-f88b-4ac4-99f6-0ffec5f3a53e","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},{"width":539,"visible":false,"property":"K{d","color":"brown","value":"Monday"},{"id":";WeK","color":"orange","value":"Tuesday"},{"id":"Qlr~","color":"yellow","value":"Wednesday"},{"id":"OIae","color":"green","value":"Thursday"},{"id":"Fm>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"fb24f8e8-7c0e-4774-8d4f-6bec35029c13","version":292,"type":"table","name":"For copying to final","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":225,"visible":true,"property":">>Gm"},{"width":124,"visible":true,"property":";:c\\"},{"width":285,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"pjT:"},{"width":286,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"LQJ@"},{"width":200,"visible":true,"property":"B:Eq"},{"width":159,"visible":true,"property":"Mf`v"},{"width":163,"visible":false,"property":"=WD`"},{"width":200,"visible":false,"property":"zo?d"},{"width":539,"visible":false,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"d39ddd72-5041-4bbc-b6c4-c8a7ddf49179","version":818,"type":"table","name":"Sorted by name","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":176,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"zo?d"},{"width":194,"visible":true,"property":">Gm"},{"width":121,"visible":true,"property":"<\\t`"},{"width":200,"visible":true,"property":"R\\:D"},{"width":372,"visible":false,"property":"_HTj"},{"width":200,"visible":false,"property":"Mf`v"},{"width":200,"visible":false,"property":"pjT:"}],"collection_pointer":{"id":"e38e688d-620a-4b0f-81d3-73735e0693d8","table":"collection","spaceId":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}},"parent_id":"5e1865d3-8f75-4840-a7b3-cd2573f6424b","parent_table":"block","alive":true,"page_sort":["80d7da9f-82c3-406e-9741-bcc1b9cff1a9","b8f20d87-b39a-4064-a023-6abfca157c88","3f68a9bd-5eb6-4e64-beca-281fc4d10dbb","e86b039d-5c7a-4e4d-8623-a6b08cb24a48","320fbd52-2c2b-475f-b2da-07864683da29","5ff3d332-073e-4c93-b127-e69f9df169d5","d179a076-b691-46ad-a752-ce32dfa11bcd","1dda772e-1e87-4a0c-a582-a191ff304204","b8eee1a0-1cc3-42fd-8b29-ff4e3c581d19","26108f23-c750-4058-b26f-8420fb7748a3","73ebe4d0-7a8e-4e6a-b93d-2b8c169f4a1a","1d704fe9-bd23-4fb7-9d74-a974c65e2244","bf7b51df-bfff-459b-85dc-ff4fc776c9aa","7cf59d05-a856-4633-978a-a56a880f0cf8","455e36c6-1fcc-41db-89d5-4e5a959c349a","dd04346a-c48c-4d7c-89ac-5e1920576bfa","1d996c31-e552-4e3f-86d5-681bd1884843","75dc8c11-862a-498b-8cea-c14a7c6a18e9","dff47c86-ccda-4517-adbb-34074ba2ffa4","58ca3e2e-cbc1-43a5-a9bf-710bc2264a6f","fea14a8b-2951-4dff-acac-14de4789184d","3390f1e4-56fb-4dd9-aeaf-4f4e86ad5be6","07279636-6443-4a25-abd5-07a40b1882c9","ba3bfc5f-241c-49ce-ae27-2ba7527b27d6","d5e79306-ddfc-4d96-9ebd-47eaec869c27","cfecf9c5-fd50-4930-9264-2f7c3726672d","b0a8cfd9-bf0f-4696-9bdd-b0b05d7cec71","9914254b-f117-427d-a18e-942c13978d1a","a82c044e-1394-4475-92bf-9c43e718a38c","3918b591-a398-4a45-a808-38c6d79323c3","c556f9b3-2a23-4bf2-a7cd-fff5434f949a","d0c49619-86e8-43cd-9df3-86dd7c1c1d1d","4c230034-857b-4aff-b554-3cf22b957cdd","8d47b39b-636b-47a2-ac35-5f3051689147","25b27f0c-aa35-4926-b595-208c5231130e","148eaf01-e456-4435-9314-0066f1d2d6de","7916e9a3-6952-4d49-83b8-2e697415d72a","b7abe37a-8c9c-4efc-83a8-0ccc36de5d1d","bfb853d9-b1e6-481a-970e-6c100c0f16c7","21b8ee51-3565-496e-84ff-8782203c072c","b2ee4583-6f81-4c05-b3f6-f81efa1a24ad","c67fb2e5-b1ab-4d56-af58-d8d56db18c88","e693a814-7ac1-4664-b3c2-cee5d3549c5a","a37f9cb1-3d9d-459a-a1c4-68bf475ea444","b3b799f2-7a7d-44e9-af47-eb2a2e2d4d61","9c167305-10ba-4b34-a092-7a5ea13239b4","d2710181-6321-4d71-88c7-5f049d2dfd57","ee3dcdd1-d7bc-4809-9caf-ce8bec318384","d36485a7-d749-4512-a97f-8a64bdec62f4","43b54100-7643-4867-8231-1727a947cd4d","9d48e9c9-260f-41b2-a21e-9441bab74ca0","e3f09768-d770-415c-b768-b8278b5482a0","87fe14a6-6042-483b-8261-a3d7a9596298","dab8ef42-154f-4e4b-b34a-7da4616f7368","edfe4fce-28e9-4b98-a80a-6cf3afa53856","4e149194-e542-4204-8062-fd608eec8872","cdb99eef-cdbd-4aaa-a678-dc089739c335","e15b3ca5-974f-4409-a879-31857807f86e","8963ee06-88f2-4f4b-a3cf-5e6ee6244bd6","394bdbe9-ca41-4113-b5e0-1fc9729d0e11","cfde895b-a32e-4fef-8c75-85755601e11d","d72b0b26-a76a-426b-aec4-8c87f84ed27f","50505d83-a8c8-460e-a976-4f53b6e15dff","c26cd957-9549-41af-ab46-126152046e11","4b93b494-6ace-4fe2-91ae-5a11a4b2698f","16678ca8-1e8a-497e-a3d2-bf8edab31a3b","e992eab2-5475-424e-abaa-de0736c4c3c5","26cddb2d-015e-4a96-a665-5c3ae68f958f","634cc05d-293e-4549-a903-dfb8d19b9e4b","f3b6f427-8a77-4fa2-b8ea-4b6a9dbc0260","20917259-a2cf-40c9-a72e-3374fe2062ea","5415f867-573e-4b4d-bfc0-e3581989dbe5","d2e78427-4fb8-4a28-95c9-b30cb1f509f5","bf6fe550-9932-4e46-ba29-7745a0608549","8bcad3aa-f2d4-4f61-895f-ad066706dfca","30efc624-9c89-4337-a70d-a427146c730b","6a8181aa-972a-4e87-b78f-30f05a5f7387","b5683451-84aa-4bd7-a17d-b370db7980be","138df2d1-4629-4211-9ea0-396f458d2b4c","5499e98a-832c-4a8c-aba1-ec1d9f57292b","a3cd60e9-c694-46fe-a631-f24b44da1cdc","fcead5f3-6947-423d-8683-0c65e83ed8f9","5ba12c78-37ec-4f42-8ed9-e8b1b4abca41","375dd916-026d-4e76-9f86-89ba2d2482f3","c1f0ced3-cdfb-44fd-92b9-c6a45c1fe32a","45e610f2-5dab-4cf8-8976-62ef58f65417","25bad495-34fe-4db7-b879-f92f359edb71","229860cd-cae1-483d-9476-14ce608bc0ab","d04deead-44b9-4e15-97ff-af4faac462b8","3b540bde-6c3d-4c1a-b7bb-682eba1404df","21dfef19-a016-4520-bc9a-6eaac35c0123","d8b23bc3-90e8-4486-8eb3-8287563d77af","c297bc53-3c36-45af-95b9-867bd1763528","b3af1c11-d888-4292-b1c9-49004d6d90bd","a791cbbe-7c8f-47f8-b6a0-9c822c939ea6","ef3abc1b-47b0-4eb7-9fc3-ed1e5cba2a20","7e3d2dd1-b680-4c11-bfe5-f5f9510a099b","eaf6242a-4ccc-42d0-9df4-64516ae6da10","bd7f78f0-9879-4a81-9843-020c0aedb8bf","15501ed4-0d22-4449-bc23-74bf5e810fe5","cd74805b-8867-46ba-bf38-b8b720f697a8","8927a91f-eff6-42c1-9dd8-0fc959c0feee","ab6c1c7f-e4dc-4292-a336-a8aeeeea5231","947742f7-73c1-4b7d-b535-14fe28df6455","ca2f9f2d-3cc0-4add-92e4-24d4b79b4811","bff2728f-9ccd-4f6d-80a0-bde174b96ac7","8b0aeec0-8a11-4fd3-a77b-f571b0b4e6e5","9919ea53-db46-44e6-b90a-37dac36054a2","abb3181f-8478-447e-8ef4-4f798c674ac0","f423b719-8bc2-446a-af8f-fe6cedc5db93","1cf907e2-8eef-44ff-8381-1aeba6f6fe20","c2c58aff-b2bd-478e-a740-d4959d9ac154","ed30e6f6-7c05-4756-a13f-a8d83d34bec6","11b1742c-9e64-4811-a371-6bf962e05694","2d9a9006-3dc3-4eb9-a68f-d9f7466bce5c","1cef6663-9aaf-4d01-a450-e5e863af04b8","3b88ee39-8868-4cfb-83bb-1f234e16724d","dc003b5e-bd14-4150-af35-cf1eca003e13","c0de3776-ede0-4c30-be88-288a19604379","dbb449a2-7df2-4821-a94d-400b65aed1e0","0a75393a-f05c-441a-b978-0b033e7b3dcb","a3a8dd50-043c-4586-9e6a-165dae46e7cd","1efe468a-0193-4078-a1b4-66c36ef05846","a42cc434-71a4-47e5-8950-2ff2d585e4bc","d1569dba-23b6-46a0-9556-b71ff0727e26","a259cd5d-0a45-40d2-98d7-afb774a00554","4180d7bc-d11f-4d4f-be7b-801320cf94aa","cfc42d63-ec72-443e-a1e0-7cd15cd1b6b2","6bfdf00f-db69-4def-ab47-e13a8cd7b673","6028f4b4-f271-472c-a2c8-acb11caa3fff","60a853d5-098c-4f34-b9dd-46a58efe5216","c0cf2ae7-6595-415d-b8f0-70ca4cbf2f36","67f94fd5-db64-4d62-bea2-987fa2be2f69","c1b92230-2e51-412e-8149-d83f131e77e7","f09da0ac-5747-44e4-bf6a-4291fee3d9a2","1bb96063-db6c-4cbe-af69-2d00c6a7b369","2216cb44-05b3-490e-84e6-f928b4ed2aef","276d1e16-7a7c-4552-b2a5-6425ef44907b","5df0843e-6388-403c-aff3-0fd826eb55bf","e23c80b4-93af-47c4-a213-c2fdf3d919bf","d6fc97ee-9b2b-40cf-a897-77e4fd9bb4f0","2dc746fa-8f4f-423d-ab3b-646834be8e8a","be032e3f-6934-41cb-82dc-c1c6f47f5142","f3b72cc7-1135-4121-bb1a-e14befc8eb4f","b706798a-20fd-460d-b182-3528d57c3743","3137dcf5-8634-4567-825e-b680eba551d9","1a64bcc6-373d-4d33-a78b-82fa0e1d2c21","6c056d5a-a4aa-423f-ac4e-5da45899f8c3","d8b88202-9bbb-4794-a41c-ade28f86ec79","f695b133-d79e-4a28-806a-c7816b2b20e5","8f11570b-97d7-432c-9e08-8d81c364a9bd","cba0e342-eb23-490d-bcb3-5ad702ffe616","ede79610-1a3a-4749-8b0a-c36b5fe8d3ba","14d54749-63ad-4780-8bf0-bfd9ed9db335","a1307bb9-ff3e-4f34-a82b-0f00e80bb259","ca5acf7a-8883-4fdd-8645-c20d646b6ea4","944c9a63-de56-4d06-b8cd-06558125646e","1dbba8a9-1e44-443d-b3f5-1215cb7684c7","d78d4962-bc5b-465f-8021-218e20f5fc7a","29cbb222-2f1b-4e94-9906-136598c6a36e","8c311bef-4951-42b3-af2b-64f4b1a8533b","9c16ce62-0fa0-40bc-9aa0-33562495d8e0","0be688d3-4b95-466c-99c7-1e10555047ca","435f531a-0c04-4507-8cdd-8ab2ba2098a6","29178e11-4d8e-4bfb-a185-ad6ef228be55","8a299808-90ad-4a99-a961-487a74113602","20593fb1-7b98-4ad4-b665-bd51d17ea110","76c088a7-e1d9-4cf3-8c2a-a089d5872a73","8e803c64-fa50-43d5-8b56-3166792858c6","921231f0-8471-4717-872a-ed53c83b9150","4599af88-8851-4ad4-9120-ac7720b2a9b0","6148d44a-7933-4d98-8ce1-d22be7db73d1","ca9891b7-6b3d-4afe-a3b4-37e49274f963","220244b9-e22e-4c55-921e-2f2d98fa01a0","4a5045e7-0d9c-44bc-b079-8a0f32dc2ab8","df60a7dd-daaa-4aae-ad38-a8977ae8223c","b19ddcd9-8ee4-4a01-a0f2-04daebf51a1c","27a95a36-f080-43c2-8b8c-1a10c814f35a","fbae94a2-65d1-4db9-b48e-eb296215e7d3","ddafcc94-0025-4912-9da6-2bd214d70984","97f6e680-6894-4879-aae5-2d099a0439fe","2550fd85-0e8c-40bf-aa42-30b6fe394df3","9af07187-e2f0-4dca-9f87-175ecc1c41ea","c9a4078e-fec0-4a47-8779-2552487e4143","71950354-ce16-4acb-9537-926885811e17","bf482d4d-f2b1-4160-99bb-9ded585ff518","a68d9e08-8804-41ae-88f3-af9fc9f52b6a","cde43b84-f7b5-4076-b0fa-d9883edbe118","949bdd60-dd5d-4871-9248-16183ae117bb","9d80a5a4-f80a-4344-86c1-fffe5724a93f","0d914c29-ad5e-4682-9eb5-cccd8b35d156","15e8b124-9e95-4d7d-937d-a7448126d443","789fff4a-31ae-4724-8214-cbad2a03bc6c","c6f8bb18-07e0-49bc-b14c-7a93fffcc3be","37f64d6c-856a-45d4-ae1c-787aa2eaac29","a604a22d-e533-4b87-bb55-09adc2af00ca","7781829a-04c3-488d-8c00-67cbfa195279","c7139154-3923-4dee-8181-a6243de4c976","f3ac9766-0302-4522-906d-45ad7a8ea060","2b86d329-32b9-4e95-8c15-fe6ea90ef4eb","a3ff1019-73c2-46ef-a917-0c749dc7a66b","ac6cc1d7-0745-47fd-9b87-84c63329039f","581507dc-533e-4600-9215-03f0e000393d","5fb1e23e-9ef2-49f8-9d8d-51d7d9e74ca9","471524da-ac95-4e70-834e-cad6e07afe1f","8db54920-85c2-457c-9ba7-9901243cfbbc","bf1e263f-818f-4196-ab92-7167aeedecf8","e888c902-3fb5-4e97-9db4-39c540023ab7","f2624eb4-9955-441d-870a-86d77cfc9f29","a6427d07-59df-4500-89bf-63153e845c67","2e95f701-433d-46d7-b576-3763b363edf7","d8bc49a0-033d-43f7-a57c-e3a267f55879","4e34ad83-a93f-4fad-a000-625e1e7ce92a","182fb594-883e-45ca-9b0a-f7dfb57f2ba7","26eaaf74-61d5-4b57-a7c1-d644e164302e","bb0c3590-afbe-4528-aba6-bda243798293","2c5431f2-8923-4b9b-adfb-344533552bdd","3f82ea9d-6118-49b3-a167-cdab2fe82497","ce6df1d4-f38a-4649-bc2c-b847e48b5056","e2a17874-e8e5-44fe-aff2-f2cb9c56098a","aa5cf4e8-a847-4cd3-80a2-ee1de8369ce4","a22b1812-888d-4ad8-8e0c-40ed5be324d4","fe40b9d7-4313-43be-82cc-2d57a0cdb61b","12d07a36-a3c7-49cc-8fe3-63d060d04339","86f3cc7b-6590-4819-9f87-95ec5c6c6c1d","6e778f3a-e16d-4970-a3af-0b7dddb43b64","e79b83e8-55bc-4750-b4f7-9646647d8d19","1a56df20-9634-4e16-873a-db82c54b9d48","7b0e1ccd-df28-481e-9d87-3d9838200395","6f7a547e-f143-4997-8363-808723cadb92","ee186a6d-8647-4202-8f1d-516c4d4229dc","1d86cd3c-e014-46e0-8f73-0e70d4287cd5","85295232-d496-49cd-89d6-30495d7e4cb4","6ce6f053-2c4b-4987-bf3c-d2a5ec03ecf2","3d79767d-be48-4947-ab26-bf43ae1451bd","990dd017-90eb-4940-b5e4-9ac8e5f2562c","e4122488-d85f-4ea0-a801-2c23a9312574","dbaa19ce-59fe-4a40-9aeb-6d0e8b8c0657","54c930a8-c75b-4cbb-91d1-ab759487c9a3","ac725466-3339-4427-9079-434d80ade7b9","d1f5e6a5-88e0-47a6-ad8d-dee755f5c74f","bd297533-496f-4d20-b81f-7ad4e0756397","3ee8e07b-eea3-4939-9055-6aff48e3e51a","a96898de-d384-45ec-961c-8f01fdb5dc73","32e0ad0e-d72f-48f0-bba4-6a3707604aaa","4007bf81-b00e-4750-b851-7ec471273bf2","40aeedb7-0877-478c-b4e4-49395f7b26cf","8673752a-79a8-4568-8deb-571cd6aab24d","69f8b658-9cfb-407d-90c6-3efc9b96835b","3e3afdd9-5775-4d05-9b9a-6bf8d515fc04","f91d821b-f4af-4f98-9c77-967120c13514","77203aa4-43b9-4b93-97bf-b1cbae4e14eb","76add0fa-5b7d-4d47-a705-8228c7a6d146","fa33325b-d6dd-4fe4-9a1f-dd7db6d78f95"],"query2":{"timeline_by":">>Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"5537f8ba-2f92-467f-aca5-d43a0e59d6ab","version":32,"type":"calendar","name":"","format":{"table_properties":[{"width":308,"visible":true,"property":"title"},{"width":200,"visible":true,"property":"=WD`"},{"width":200,"visible":true,"property":"~Dke"},{"width":329,"visible":true,"property":">>Gm"}],"calendar_properties":[{"visible":false,"property":"zo?d"},{"visible":true,"property":"R\\:D"},{"visible":true,"property":":iJn"},{"visible":true,"property":">>Gm"},{"visible":false,"property":"pjT:"},{"visible":false,"property":"_HTj"},{"visible":false,"property":"PvYj"},{"visible":false,"property":"<\\t`"},{"visible":false,"property":"=WD`"},{"visible":false,"property":"B:Eq"},{"visible":false,"property":">Gm","timeline_by":">>Gm"},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"},{"id":"be03b38d-8ecb-4ecf-84b2-d84948b9ed6f","version":23,"type":"table","name":"Chronological","format":{"table_wrap":true,"gallery_cover":{"type":"page_content"},"board_columns_by":{"sort":{"type":"manual"},"type":"multi_select","property":"zEQR"},"table_properties":[{"width":228,"visible":true,"property":"title"},{"width":225,"visible":true,"property":">>Gm"},{"width":279,"visible":true,"property":"R\\:D"},{"width":200,"visible":true,"property":"zo?d"},{"width":163,"visible":true,"property":"=WD`"},{"width":179,"visible":true,"property":"~Dke"},{"width":200,"visible":true,"property":"pjT:"},{"width":539,"visible":true,"property":">Gm","aggregations":[{"property":"title","aggregator":"count"}]},"space_id":"a8000652-f2c8-4adc-9353-cd51c033cc1f"}]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/db.sqlite b/.wrangler/state/v3/cache/default/db.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..43257a8ea5b2f34752c825f3a878343717a844db GIT binary patch literal 24576 zcmeHPOKfCE6>WdVwrn@qkX1y-QKSU<#r6Lfjl?8a(ZFOT%or&l$(Z_%9Xz(Nd-4H! zVOf!qH4=+_$O5s*7QqrwluZOtgcPx0hq8ePWeZ5za9;Z}M#1Cf%qPLAw%o3M@44#r zIdyN~vbK)&PEo@w@lxM`3X91OE0MC?8fF zXg&1opC;P>ZVgQSs?~m={WkuTS3#g4P!K2x6a)$a1%ZM4k->c_FQI*O$`9LV96sY29^~R#z65;=wb6k6fHPGe6fkd;VK_OQ-eD~S=`dU3SHh#2>r}+hUt-HE|&cXYn2R_u#_9HdeL-_4$e^M8R+nW%?n4A3AHa(KFA{nKgGM%`m2@ zH&#y)B&UBJE z?1W%wlMupqP&kk^b%yl4@&teT`#+glOfIJNjj7qEo|YU#tfITFE>~`OdG+}U zY%Z?Gjj8FWN9X3JI~N|GKYQW)rKxA854nDIed)^53NHV8@0#GkV%n<`N7t_T<)tv) z*{H6%7x2YTD>B_dvDz!6`!1*I`Nbu?ucznS@)G(|I?WX!I~C&YU{BR@TDj6)M2(VI z%m3?C_rhsw^kuPt{NQ0fplOZBW2 zokt&=pL*t*=_%Y(_Zl!_gy6%{kJHp_uhq@%#Zx0&_tf;>btt`Ib$L03+URGfA|N>B ziUkoX5tytDb-MDAJDMX)JUeBn2*FEBGgC}j$ugDByJ);liX$O=^HV<(=4bSJ`U9+F$#kXRSGIs zf^c6MBSIxo(vfS=Gi+EntB7*J2N`sr#KNo-3_nDW8M9|pd!++0JWH*z4^GkSh-WA= z;`XU#PAC(2kLq^|)rT2%bE=1qL$#4cP~%L+qmz{Yy_F#ww>zY#7Y&6Oe#ibP9(wGC$(PU+e^nshqd@x#>>r^KhjH})E{ja@$VyM35{<|5~ z99BJe9I9iE@U+2KmMc&#d;-1awdYs3F zfn=$I!9Pk2D{u`$2I(b6{CcFW9XO#%CgFNizj2M~vV?D8{^jtJbx{=9tkbi*+U?Iq>b1X}q(FfCINGcplW#h8p5Gj5q3 zw@ML9O{AEfD~kEG_9S9dS00_gM9kGpROk~r))R0Rb-3z+^iJ9=(<_I7WiUC>&v} z7?N2cEY#C6?JS0Ft%HP#N};p0(GnsvdIhFk)`}1{w=wP!jB#Bu8$wO+&;D`}2o_8z zsc(lZ%NyCUV0gSA8X3d;x;A1Y;- zu^hW9&Zx=8wHd6>DIRTwB^)f_vzRN3m7OYM^&SuW#z!kB8rP;!8#ByTOnO&|dePX0 zgoOtZT(Vwa4@ZnYGPpH*_&4o6(FVeV4k@@SgU~eNE{HLn)2OgRL{j_yfeVLJk==7k z*yei(Z(|Kw!V)L;6tUt#uqqZ}wAi84$qGY~7f$QZ26Y^@!8y_xzb3nAryAGRWTR%d zacxcZ0)`sb)?~SPuyJioRx}41*Vbgwtp8#3;?YCxwb8mv@Aw9Hk@sEF-+%JASv0waXe7E@Q-+$5GDPI2YjUSBd6<>d6bf;KHm5=Ne5qErQ zzxeL(e)0XG{oLp#68~S~|4aOTiT~df zf!qS6N3%#_R^tEfq^9TdmU@)<|2rn%>QQ}L!bgu*^_2MkJF3*{QC;HyOZ@+5Rb|#= z_0d7$CI0`;TlH;m;73zk;{T^^zrgx)i~p}>2b=Zt|M1{@t;u`GW~ z5>5Hm1%ZOV|1$#Hd2&~mcz8CD1L-1~1TmUSl64YFM8Zt)+y@F(GV)AlDNaVAjG^W)!MZc3}30h%^7|cu)#GIV55vZvGESkT2qLXdqjVH5{OpH-kj3-v+!Iuy1AXlk7LhG0)H(_ znlqlLAc!uO87U)>P#`)gO^kJ(38{4E&=AA$HE~8Jt|CR!7{zo56d}5M_AH=3=Q}ii zbP{MrsvCB5D%8)ybFbCS?Wfz#(l{LzldXd038{IqQ3_6*DHtOW+;C+1kP%6pAUB3; zT(KOZ_wdwCP=?5BX%)ojeAiuTYZ!@9I;e~nup@UO=w%Sk-*R^?XPLc`yJmH(o7=Nv zr!Lf4oQD2)tnz_yc^d?VSPY;vC1ifc5Qrn4i$uZ~nLL!>$jp-iymCgaA|+v&SxID! zFw#2YsX}mnZJ%0NLf5hk}m5Q0@Al=rnu8c>tRJsz0_<-AmB8Td>|D-a3mS&w8SN@PTbO? k7CCkL&cTNJe$U{YM@esR1?u}P?>Q*=Z16v?)2><{9 literal 0 HcmV?d00001 diff --git a/package.json b/package.json index dc5fd48..1097929 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "prod": "wrangler publish" }, "dependencies": { + "global": "^4.4.0", "tiny-request-router": "^1.2.2" }, "devDependencies": { @@ -21,6 +22,7 @@ "ts-loader": "^8.0.1", "typescript": "^3.9.7", "webpack": "^4.43.0", - "webpack-cli": "^3.3.12" + "webpack-cli": "^3.3.12", + "wrangler": "^3.2.0" } } diff --git a/src/api/types.ts b/src/api/types.ts index 094be5c..3d1d325 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -65,6 +65,7 @@ export type RowContentType = export interface BaseValueType { id: string; type: string; + view_ids?: string[]; version: number; created_time: number; last_edited_time: number; diff --git a/src/index.ts b/src/index.ts index 2e08b57..fa818df 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,9 @@ const corsHeaders = { "Access-Control-Allow-Headers": "*", "Access-Control-Allow-Methods": "GET, HEAD, POST, OPTIONS", // "Cache-Control":`public, s-maxage=${30}, max-age=${60*60*0.1}, stale-while-revalidate=${60*4}`, - "Cache-Control":`public, s-maxage=${10}, max-age=${10}, stale-while-revalidate=${10}`, + // 60s fresh cache but 7 day cache; max-age determines "freshness" and swr time is whenever the stlate data gets sent over + // "Cache-Control":`public, s-maxage=${10}, max-age=${10}, stale-while-revalidate=${10}`, + "Cache-Control":`public, s-maxage=${60}, max-age=${60}, stale-while-revalidate=${60*60}`, }; const router = new Router(); @@ -61,15 +63,15 @@ router.get("*", async () => //cf-only cache -const cache = undefined; // (caches as any).default; -const NOTION_API_TOKEN = process.env.NOTION_TOKEN // not implemented yet — use .env later +const cache = (caches as any).default; +//const NOTION_API_TOKEN = process.env.NOTION_TOKEN // not implemented yet — use .env later // typeof env.NOTION_TOKEN !== "undefined" ? NOTION_TOKEN : undefined; const handleRequest = async (fetchEvent: FetchEvent): Promise => { const request = fetchEvent.request; const { pathname, searchParams } = new URL(request.url); const notionToken = - NOTION_API_TOKEN || + // NOTION_API_TOKEN || (request.headers.get("Authorization") || "").split("Bearer ")[1] || undefined; diff --git a/src/response.ts b/src/response.ts index d1bd041..14210b5 100644 --- a/src/response.ts +++ b/src/response.ts @@ -12,7 +12,8 @@ export const createResponse = ( "Access-Control-Allow-Methods": "GET, OPTIONS", "Content-Type": "application/json", // "Cache-Control":`public, s-maxage=${30}, max-age=${60*60*0.1}, stale-while-revalidate=${60*4}`, - "Cache-Control":`public, s-maxage=${10}, max-age=${10}, stale-while-revalidate=${10}`, + // "Cache-Control":`public, s-maxage=${10}, max-age=${10}, stale-while-revalidate=${10}`, + "Cache-Control": `public, s-maxage=${60}, max-age=${60}, stale-while-revalidate=${60 * 60}`, ...headers, }, }); diff --git a/src/routes/collection.ts b/src/routes/collection.ts index 2a510eb..d33b5d7 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -84,6 +84,7 @@ export const getCollectionData = async ( export async function collectionRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); + const pageBlock = page.recordMap.block[pageId!]; if (!page.recordMap.collection) return createResponse( @@ -92,21 +93,37 @@ export async function collectionRoute(req: HandlerRequest) { 401 ); - const collection = Object.keys(page.recordMap.collection).map( - (k) => page.recordMap.collection[k] - )[0]; - + let collection const views: any[] = [] + let collectionView: { + value: { id: CollectionType["value"]["id"], format: any }; + } + + if (pageBlock.value.view_ids && pageBlock.value.view_ids?.length > 0) { + collectionView = Object.keys(page.recordMap.collection_view).map((k) => { + views.push(page.recordMap.collection_view[k]['value']) + return page.recordMap.collection_view[k] + }).find(view => view.value.id == pageBlock.value.view_ids?.[0]); + } else { + collectionView = Object.keys(page.recordMap.collection_view).map((k) => { + views.push(page.recordMap.collection_view[k]['value']) + return page.recordMap.collection_view[k] + })[0]; + } + + if (collectionView) { + collection = Object.keys(page.recordMap.collection).map( + (k) => page.recordMap.collection[k] + ).find(view => view.value.id == collectionView.value.format.collection_pointer.id);; + } else { + collection = Object.keys(page.recordMap.collection).map( + (k) => page.recordMap.collection[k] + )[0]; + } - const collectionView: { - value: { id: CollectionType["value"]["id"] }; - } = Object.keys(page.recordMap.collection_view).map((k) => { - views.push(page.recordMap.collection_view[k]['value']) - return page.recordMap.collection_view[k] - })[0]; const tableData = await getCollectionData( collection, @@ -114,8 +131,8 @@ export async function collectionRoute(req: HandlerRequest) { req.notionToken ); - // console.log('table data:', JSON.stringify(collectionView.value)) - // console.log('view:', JSON.stringify(page.recordMap)) + // console.log('[collection] table data:', JSON.stringify(collectionView.value)) + // console.log('[collection] view:', JSON.stringify(page.recordMap)) // clean up the table order const tableProps = views[0].format.table_properties @@ -129,8 +146,6 @@ export async function collectionRoute(req: HandlerRequest) { let query_sort = views[0]['query2'] ? views[0]['query2'].sort : undefined - // console.log('?!?!?!', query_sort) - // filters result array in place const _filter = ({filter, property}: {filter:any, property:any}) => { diff --git a/src/routes/page.ts b/src/routes/page.ts index 8aede05..68f1fee 100644 --- a/src/routes/page.ts +++ b/src/routes/page.ts @@ -8,6 +8,8 @@ export async function pageRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); + // console.log('->>>>>>', JSON.stringify(page,0,2)) + if (!req.params.pageId) { console.error(`Page not found at [ID:${req.params.pageId}]`) return createResponse( @@ -47,43 +49,71 @@ export async function pageRoute(req: HandlerRequest) { } const newBlocks = await fetchBlocks(pendingBlocks, req.notionToken).then( - (res) => res.recordMap.block + (res) => res.recordMap.block ); allBlocks = { ...allBlocks, ...newBlocks }; } - const collection = page.recordMap.collection - ? page.recordMap.collection[Object.keys(page.recordMap.collection)[0]] - : null; + // const collection = page.recordMap.collection + // ? page.recordMap.collection[Object.keys(page.recordMap.collection)[0]] + // : null; + + // const collectionView = page.recordMap.collection_view + // ? page.recordMap.collection_view[ + // Object.keys(page.recordMap.collection_view)[0] + // ] + // : null; - const collectionView = page.recordMap.collection_view - ? page.recordMap.collection_view[ - Object.keys(page.recordMap.collection_view)[0] - ] - : null; - if (collection && collectionView) { + // if (collection && collectionView) { + // if (collection) { const pendingCollections = allBlockKeys.flatMap((blockId) => { + // console.log('blockMapping:', blockId) const block = allBlocks[blockId]; - return (block.value && block.value.type === "collection_view") ? [block.value.id] : []; }); for (let b of pendingCollections) { const collPage = await fetchPageById(b!, req.notionToken); - - const coll = Object.keys(collPage.recordMap.collection).map( - (k) => collPage.recordMap.collection[k] - )[0]; - - const collView: { - value: { id: CollectionType["value"]["id"] }; - } = Object.keys(collPage.recordMap.collection_view).map( - (k) => collPage.recordMap.collection_view[k] - )[0]; + // console.log('Pending Block ID $$$$:', b) + const collPageBlock = collPage.recordMap.block[b]; + + let coll + let collView: { + value: { id: CollectionType["value"]["id"], format: any }; + } + + if (collPageBlock.value.view_ids && collPageBlock.value.view_ids?.length > 0) { + collView = Object.keys(collPage.recordMap.collection_view).map( + (k) => collPage.recordMap.collection_view[k] + ).find(view => view.value.id == collPageBlock.value.view_ids?.[0]); + } else { + collView = Object.keys(collPage.recordMap.collection_view).map( + (k) => collPage.recordMap.collection_view[k] + )[0]; + } + + // console.log('-mmmm- CollView:', JSON.stringify(collView), "^^^^^", collView.value.parent_id, "\n\n\n ******", Object.keys(collPage.recordMap.collection).map( + // (k) => collPage.recordMap.collection[k] + // ).find(view => view.value.id == collView.value.format.collection_pointer.id)) + + + if (collView) { + coll = Object.keys(collPage.recordMap.collection).map( + (k) => collPage.recordMap.collection[k] + ).find(view => view.value.id == collView.value.format.collection_pointer.id); + } else { + coll = Object.keys(collPage.recordMap.collection).map( + (k) => collPage.recordMap.collection[k] + )[0]; + } + // console.log('[page] collection!!%%%:', JSON.stringify(Object.keys(collPage.recordMap.collection).map( + // (k) => collPage.recordMap.collection[k])), '%%%%%%%', ) // console.log('>>>>> page getting table data') + // console.log('[page] collection view collections:', JSON.stringify(Object.keys(collPage.recordMap.collection).map( + // (k) => collPage.recordMap.collection[k])), '!!!!!!!!!', JSON.stringify(collPage)) const { rows, schema } = await getTableData( coll, @@ -92,6 +122,8 @@ export async function pageRoute(req: HandlerRequest) { true ); + // console.log('[page] collection rows:', collView.value.id, rows, schema) + const viewIds = (allBlocks[b] as any).value.view_ids as string[]; allBlocks[b] = { @@ -107,7 +139,7 @@ export async function pageRoute(req: HandlerRequest) { }, }; } - } + // } return createResponse(allBlocks); } diff --git a/src/routes/table.ts b/src/routes/table.ts index 18b0b86..8dcb819 100644 --- a/src/routes/table.ts +++ b/src/routes/table.ts @@ -14,13 +14,20 @@ export const getTableData = async ( notionToken?: string, raw?: boolean ) => { - const table = await fetchTableData( - collection.value.id, - collectionViewId, - notionToken - ); - const collectionRows = collection.value.schema; + + + let table: any; // no idea what this is lol + + if(collection) { + table = await fetchTableData( + collection?.value?.id, + collectionViewId, + notionToken + ); + } + + const collectionRows = collection?.value.schema; const collectionColKeys = Object.keys(collectionRows); // console.log('>>>>> table block ids?!', table.result) @@ -38,7 +45,7 @@ export const getTableData = async ( const tableData = tableArr.filter( (b) => - b.value && b.value.properties && b.value.parent_id === collection.value.id + b.value && b.value.properties && b.value.parent_id === collection?.value.id ); @@ -62,7 +69,10 @@ export const getTableData = async ( return { rows, schema: collectionRows }; }; -export async function tableRoute(req: HandlerRequest) { + + + +export const tableRoute = async (req: HandlerRequest) => { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); diff --git a/wrangler.example.toml b/wrangler.example.toml index dc65932..e07dcd0 100644 --- a/wrangler.example.toml +++ b/wrangler.example.toml @@ -3,7 +3,4 @@ webpack_config = "webpack.config.js" type = "webpack" workers_dev = true -account_id = "" -zone_id = "" - -route = "notion-api.splitbee.io/*" \ No newline at end of file +account_id = "" \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 0422885..e2e9fad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,38 @@ # yarn lockfile v1 +"@cloudflare/kv-asset-handler@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz#c9959bbd7a1c40bd7c674adae98aa8c8d0e5ca68" + integrity sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A== + dependencies: + mime "^3.0.0" + +"@cloudflare/workerd-darwin-64@1.20230710.0": + version "1.20230710.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230710.0.tgz#e424757c33de39e2a506e22443726ec4ee215f26" + integrity sha512-TDEgTfzTkveW+U0qtg9/60PXbl2klnEso0oio501zAnY2SOC1x7M0qb8UkhvjHFUVpwdykUzTPWPIWFBcF1ibA== + +"@cloudflare/workerd-darwin-arm64@1.20230710.0": + version "1.20230710.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230710.0.tgz#bfc29599610ff7e32c02a28c956a3c21cde38ef7" + integrity sha512-dxBwnKcj7TiM1JGiODg0LASa25A9P0XLeMkmF8YCECZoq+3QLH/uY4Vbm1xeEy8iXUZrt/uYN72bBE83vY4HIQ== + +"@cloudflare/workerd-linux-64@1.20230710.0": + version "1.20230710.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230710.0.tgz#108f73ba039f2f4bfed8a450e5327a09a0dfcc46" + integrity sha512-WrKZwL76i51jQLFpSxklpRSm2s8T9Xf6tVzQaiLTtpguKZSF/CTAyjjEOVfS7FXk+Te8lyAJAFQnj5QHoJ3pzA== + +"@cloudflare/workerd-linux-arm64@1.20230710.0": + version "1.20230710.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230710.0.tgz#66613b11b4e7c14b4122c85c61b648df6588bb8a" + integrity sha512-eWdbOoqFqQ4m1/Wwy2dRDaOVXjOmWGjwBliU8pvm2m9RjfRTdfik7z6E3vOkalxqJDHiJ0f8SUykKz2oM1lD0A== + +"@cloudflare/workerd-windows-64@1.20230710.0": + version "1.20230710.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230710.0.tgz#0802961da9d6dc02935da9eae9183e0dbf4edf2a" + integrity sha512-P5ihH98Pb72HrsVsvb/HCSezvAvEtPeVQVBKgIclNE9e0fkA4zX9QMzBBFvLy3yr0YLf4r7MO2tNnt7JFnheGA== + "@cloudflare/workers-types@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@cloudflare/workers-types/-/workers-types-2.0.0.tgz#c57162155bd83744a0fa83276ffec0ad430f14e4" @@ -14,6 +46,129 @@ dependencies: binary-install "0.0.1" +"@esbuild-plugins/node-globals-polyfill@^0.1.1": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.1.1.tgz#a313ab3efbb2c17c8ce376aa216c627c9b40f9d7" + integrity sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg== + +"@esbuild-plugins/node-modules-polyfill@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.1.4.tgz#eb2f55da11967b2986c913f1a7957d1c868849c0" + integrity sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg== + dependencies: + escape-string-regexp "^4.0.0" + rollup-plugin-node-polyfills "^0.2.1" + +"@esbuild/android-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz#6af6d16be6d534d776a51fc215bfd81a68906d2c" + integrity sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg== + +"@esbuild/android-arm@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.3.tgz#2a091222f3b1928e3246fb3c5202eaca88baab67" + integrity sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA== + +"@esbuild/android-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.3.tgz#a6d749c58b022d371dc40d50ac1bb4aebd1eb953" + integrity sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ== + +"@esbuild/darwin-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz#92d1826ed2f21dcac5830b70d7215c6afbb744e2" + integrity sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw== + +"@esbuild/darwin-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz#7fc3570c2b16e9ff4fc178593a0a4adb1ae8ea57" + integrity sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ== + +"@esbuild/freebsd-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz#16735ce16f8c9a4e7289e9e259aa01a8d9874307" + integrity sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw== + +"@esbuild/freebsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz#f4edd1464cb072799ed6b8ab5178478e71c13459" + integrity sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug== + +"@esbuild/linux-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz#4b7ae6fe3618d9a40d6ca39c6edc991ac1447203" + integrity sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ== + +"@esbuild/linux-arm@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz#4b3e9f849822e16a76a70844c4db68075b259a58" + integrity sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ== + +"@esbuild/linux-ia32@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz#2ff3936b91bfff62f9ecf7f6411ef399b29ed22d" + integrity sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA== + +"@esbuild/linux-loong64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz#ff8aa59f49d9ccbc1ff952ba1f5cd01a534562df" + integrity sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw== + +"@esbuild/linux-mips64el@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz#5dd5e118071c3912df69beedbfd11fb117f0fe5e" + integrity sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw== + +"@esbuild/linux-ppc64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz#36c62e24eae7fa3f0d921506da8fc1e6098a1364" + integrity sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q== + +"@esbuild/linux-riscv64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz#f0fec8e7affb5bcc817fefc61a21cbb95539e393" + integrity sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ== + +"@esbuild/linux-s390x@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz#22e10edd6e91f53c2e1f60e46abd453d7794409b" + integrity sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ== + +"@esbuild/linux-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz#38388b73fd9eebe45b073d7d8099b9c2e54f7139" + integrity sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w== + +"@esbuild/netbsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz#e0270569567f1530b8dbe6d11d5b4930b9cc71ae" + integrity sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA== + +"@esbuild/openbsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz#3b16642d443848bca605f33ee3978a1890911e6d" + integrity sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg== + +"@esbuild/sunos-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz#a838f247867380f0ae25ce1936dc5ab6f57b7734" + integrity sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw== + +"@esbuild/win32-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz#bedd9bef5fb41f89ce2599f1761973cf6d6a67b6" + integrity sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg== + +"@esbuild/win32-ia32@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz#49800aa812d8cc35ceef61e8d3b01224684cc0b1" + integrity sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ== + +"@esbuild/win32-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz#94047dae921949cfb308117d993c4b941291ae10" + integrity sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow== + "@types/node@^14.0.24": version "14.0.24" resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.24.tgz#b0f86f58564fa02a28b68f8b55d4cdec42e3b9d6" @@ -174,11 +329,21 @@ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== +acorn-walk@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" + integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + acorn@^6.4.1: version "6.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== +acorn@^8.8.0: + version "8.10.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" + integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + ajv-errors@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" @@ -227,6 +392,14 @@ anymatch@~3.1.1: normalize-path "^3.0.0" picomatch "^2.0.4" +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -252,6 +425,13 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= +as-table@^1.0.36: + version "1.0.55" + resolved "https://registry.yarnpkg.com/as-table/-/as-table-1.0.55.tgz#dc984da3937745de902cea1d45843c01bdbbec4f" + integrity sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ== + dependencies: + printable-characters "^1.0.42" + asn1.js@^4.0.0: version "4.10.1" resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" @@ -301,6 +481,11 @@ base64-js@^1.0.2: resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + base@^0.11.1: version "0.11.2" resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" @@ -314,6 +499,14 @@ base@^0.11.1: mixin-deep "^1.2.0" pascalcase "^0.1.1" +better-sqlite3@^8.1.0: + version "8.4.0" + resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-8.4.0.tgz#aa27bbc6bb42bb438fc55c88b146fcfe5978fa76" + integrity sha512-NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw== + dependencies: + bindings "^1.5.0" + prebuild-install "^7.1.0" + big.js@^5.2.2: version "5.2.2" resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" @@ -348,6 +541,20 @@ bindings@^1.5.0: dependencies: file-uri-to-path "1.0.0" +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +blake3-wasm@^2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/blake3-wasm/-/blake3-wasm-2.1.5.tgz#b22dbb84bc9419ed0159caa76af4b1b132e6ba52" + integrity sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g== + bluebird@^3.5.5: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" @@ -479,11 +686,26 @@ buffer@^4.3.0: ieee754 "^1.1.4" isarray "^1.0.0" +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= +busboy@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + cacache@^12.0.2: version "12.0.4" resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" @@ -525,6 +747,14 @@ camelcase@^5.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +capnp-ts@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/capnp-ts/-/capnp-ts-0.7.0.tgz#16fd8e76b667d002af8fcf4bf92bf15d1a7b54a9" + integrity sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g== + dependencies: + debug "^4.3.1" + tslib "^2.2.0" + chalk@^2.3.0, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" @@ -568,6 +798,21 @@ chokidar@^3.4.0: optionalDependencies: fsevents "~2.1.2" +chokidar@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + chownr@^1.1.1, chownr@^1.1.3: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -667,6 +912,11 @@ constants-browserify@^1.0.0: resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= +cookie@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + copy-concurrently@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" @@ -753,6 +1003,11 @@ cyclist@^1.0.1: resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= +data-uri-to-buffer@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz#d296973d5a4897a5dbe31716d118211921f04770" + integrity sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA== + debug@=3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" @@ -767,6 +1022,13 @@ debug@^2.2.0, debug@^2.3.3: dependencies: ms "2.0.0" +debug@^4.3.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -777,6 +1039,18 @@ decode-uri-component@^0.2.0: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" @@ -812,6 +1086,11 @@ detect-file@^1.0.0: resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= +detect-libc@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" + integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== + diffie-hellman@^5.0.0: version "5.0.3" resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" @@ -821,6 +1100,11 @@ diffie-hellman@^5.0.0: miller-rabin "^4.0.0" randombytes "^2.0.0" +dom-walk@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" + integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== + domain-browser@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" @@ -859,7 +1143,7 @@ emojis-list@^3.0.0: resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== -end-of-stream@^1.0.0, end-of-stream@^1.1.0: +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== @@ -896,11 +1180,44 @@ errno@^0.1.3, errno@~0.1.7: dependencies: prr "~1.0.1" +esbuild@0.16.3: + version "0.16.3" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.3.tgz#5868632fa23f7a8547f2a4ea359c44e946515c94" + integrity sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg== + optionalDependencies: + "@esbuild/android-arm" "0.16.3" + "@esbuild/android-arm64" "0.16.3" + "@esbuild/android-x64" "0.16.3" + "@esbuild/darwin-arm64" "0.16.3" + "@esbuild/darwin-x64" "0.16.3" + "@esbuild/freebsd-arm64" "0.16.3" + "@esbuild/freebsd-x64" "0.16.3" + "@esbuild/linux-arm" "0.16.3" + "@esbuild/linux-arm64" "0.16.3" + "@esbuild/linux-ia32" "0.16.3" + "@esbuild/linux-loong64" "0.16.3" + "@esbuild/linux-mips64el" "0.16.3" + "@esbuild/linux-ppc64" "0.16.3" + "@esbuild/linux-riscv64" "0.16.3" + "@esbuild/linux-s390x" "0.16.3" + "@esbuild/linux-x64" "0.16.3" + "@esbuild/netbsd-x64" "0.16.3" + "@esbuild/openbsd-x64" "0.16.3" + "@esbuild/sunos-x64" "0.16.3" + "@esbuild/win32-arm64" "0.16.3" + "@esbuild/win32-ia32" "0.16.3" + "@esbuild/win32-x64" "0.16.3" + escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + eslint-scope@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" @@ -921,6 +1238,11 @@ estraverse@^4.1.0, estraverse@^4.1.1: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== +estree-walker@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + events@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" @@ -934,6 +1256,11 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: md5.js "^1.3.4" safe-buffer "^5.1.1" +exit-hook@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-2.2.1.tgz#007b2d92c6428eda2b76e7016a34351586934593" + integrity sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw== + expand-brackets@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" @@ -947,6 +1274,11 @@ expand-brackets@^2.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" +expand-template@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" + integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== + expand-tilde@^2.0.0, expand-tilde@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" @@ -1081,6 +1413,11 @@ from2@^2.1.0: inherits "^2.0.1" readable-stream "^2.0.0" +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -1116,16 +1453,34 @@ fsevents@~2.1.2: resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + get-caller-file@^2.0.1: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-source@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/get-source/-/get-source-2.0.12.tgz#0b47d57ea1e53ce0d3a69f4f3d277eb8047da944" + integrity sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w== + dependencies: + data-uri-to-buffer "^2.0.0" + source-map "^0.6.1" + get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= +github-from-package@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== + glob-parent@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" @@ -1141,6 +1496,18 @@ glob-parent@~5.1.0: dependencies: is-glob "^4.0.1" +glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + glob@^7.1.3, glob@^7.1.4: version "7.1.6" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" @@ -1189,6 +1556,14 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" +global@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" + integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== + dependencies: + min-document "^2.19.0" + process "^0.11.10" + graceful-fs@^4.1.11, graceful-fs@^4.1.15: version "4.2.4" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" @@ -1273,11 +1648,21 @@ homedir-polyfill@^1.0.1: dependencies: parse-passwd "^1.0.0" +http-cache-semantics@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + https-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + ieee754@^1.1.4: version "1.1.13" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" @@ -1329,7 +1714,7 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.4, ini@^1.3.5: +ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== @@ -1532,6 +1917,11 @@ kind-of@^6.0.0, kind-of@^6.0.2: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== +kleur@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" + integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== + loader-runner@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" @@ -1566,6 +1956,20 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +magic-string@^0.25.3: + version "0.25.9" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + dependencies: + sourcemap-codec "^1.4.8" + make-dir@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" @@ -1646,6 +2050,45 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" +mime@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" + integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + +min-document@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== + dependencies: + dom-walk "^0.1.0" + +miniflare@3.20230710.0: + version "3.20230710.0" + resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-3.20230710.0.tgz#8c140e87eb1d0bd594b45fbf476790f699234154" + integrity sha512-kVxJoJFeepK+rGJp9UN0D8d3sL6hjFbzd3qcLUUUKosp0ouoleOa6uPNK0b8fEBWWqFUD2W4V4ziN7UvXFB4pg== + dependencies: + acorn "^8.8.0" + acorn-walk "^8.2.0" + better-sqlite3 "^8.1.0" + capnp-ts "^0.7.0" + exit-hook "^2.2.1" + glob-to-regexp "^0.4.1" + http-cache-semantics "^4.1.0" + kleur "^4.1.5" + set-cookie-parser "^2.6.0" + source-map-support "0.5.21" + stoppable "^1.1.0" + undici "^5.13.0" + workerd "1.20230710.0" + ws "^8.11.0" + youch "^3.2.2" + zod "^3.20.6" + minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" @@ -1668,6 +2111,11 @@ minimist@^1.2.0, minimist@^1.2.5: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== +minimist@^1.2.3: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + minipass@^3.0.0: version "3.1.3" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" @@ -1707,6 +2155,11 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" +mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3: version "0.5.5" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" @@ -1731,11 +2184,26 @@ ms@2.0.0: resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +mustache@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64" + integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== + nan@^2.12.1: version "2.14.1" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== +nanoid@^3.3.3: + version "3.3.4" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -1753,6 +2221,11 @@ nanomatch@^1.2.9: snapdragon "^0.8.1" to-regex "^3.0.1" +napi-build-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" + integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + neo-async@^2.5.0, neo-async@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" @@ -1763,6 +2236,18 @@ nice-try@^1.0.4: resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== +node-abi@^3.3.0: + version "3.45.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" + integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== + dependencies: + semver "^7.3.5" + +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + node-libs-browser@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" @@ -1929,6 +2414,11 @@ path-to-regexp@^6.1.0: resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.1.0.tgz#0b18f88b7a0ce0bfae6a25990c909ab86f512427" integrity sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw== +path-to-regexp@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" + integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== + pbkdf2@^3.0.3: version "3.1.1" resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" @@ -1962,11 +2452,34 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= +prebuild-install@^7.1.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" + integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== + dependencies: + detect-libc "^2.0.0" + expand-template "^2.0.3" + github-from-package "0.0.0" + minimist "^1.2.3" + mkdirp-classic "^0.5.3" + napi-build-utils "^1.0.1" + node-abi "^3.3.0" + pump "^3.0.0" + rc "^1.2.7" + simple-get "^4.0.0" + tar-fs "^2.0.0" + tunnel-agent "^0.6.0" + prettier@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== +printable-characters@^1.0.42: + version "1.0.42" + resolved "https://registry.yarnpkg.com/printable-characters/-/printable-characters-1.0.42.tgz#3f18e977a9bd8eb37fcc4ff5659d7be90868b3d8" + integrity sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ== + process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -2064,6 +2577,16 @@ randomfill@^1.0.3: randombytes "^2.0.5" safe-buffer "^5.1.0" +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" @@ -2077,6 +2600,15 @@ randomfill@^1.0.3: string_decoder "~1.1.1" util-deprecate "~1.0.1" +readable-stream@^3.1.1, readable-stream@^3.4.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" @@ -2102,6 +2634,13 @@ readdirp@~3.4.0: dependencies: picomatch "^2.2.1" +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" @@ -2187,6 +2726,29 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" +rollup-plugin-inject@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz#e4233855bfba6c0c12a312fd6649dff9a13ee9f4" + integrity sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w== + dependencies: + estree-walker "^0.6.1" + magic-string "^0.25.3" + rollup-pluginutils "^2.8.1" + +rollup-plugin-node-polyfills@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz#53092a2744837164d5b8a28812ba5f3ff61109fd" + integrity sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA== + dependencies: + rollup-plugin-inject "^3.0.0" + +rollup-pluginutils@^2.8.1: + version "2.8.2" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" + integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== + dependencies: + estree-walker "^0.6.1" + run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" @@ -2220,6 +2782,13 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" +selfsigned@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.0.1.tgz#8b2df7fa56bf014d19b6007655fff209c0ef0a56" + integrity sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ== + dependencies: + node-forge "^1" + semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -2230,6 +2799,13 @@ semver@^6.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@^7.3.5: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + serialize-javascript@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" @@ -2242,6 +2818,11 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= +set-cookie-parser@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz#131921e50f62ff1a66a461d7d62d7b21d5d15a51" + integrity sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ== + set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" @@ -2277,6 +2858,20 @@ shebang-regex@^1.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" + integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== + dependencies: + decompress-response "^6.0.0" + once "^1.3.1" + simple-concat "^1.0.0" + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -2323,6 +2918,14 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" +source-map-support@0.5.21: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + source-map-support@~0.5.12: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" @@ -2346,6 +2949,16 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +source-map@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" @@ -2360,6 +2973,14 @@ ssri@^6.0.1: dependencies: figgy-pudding "^3.5.1" +stacktracey@^2.1.8: + version "2.1.8" + resolved "https://registry.yarnpkg.com/stacktracey/-/stacktracey-2.1.8.tgz#bf9916020738ce3700d1323b32bd2c91ea71199d" + integrity sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw== + dependencies: + as-table "^1.0.36" + get-source "^2.0.12" + static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" @@ -2368,6 +2989,11 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" +stoppable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/stoppable/-/stoppable-1.1.0.tgz#32da568e83ea488b08e4d7ea2c3bcc9d75015d5b" + integrity sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw== + stream-browserify@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" @@ -2400,6 +3026,11 @@ stream-shift@^1.0.0: resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" @@ -2430,6 +3061,11 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -2449,6 +3085,27 @@ tapable@^1.0.0, tapable@^1.1.3: resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== +tar-fs@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + tar@^5.0.5: version "5.0.5" resolved "https://registry.yarnpkg.com/tar/-/tar-5.0.5.tgz#03fcdb7105bc8ea3ce6c86642b9c942495b04f93" @@ -2567,11 +3224,23 @@ tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== +tslib@^2.2.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" + integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== + tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" @@ -2582,6 +3251,13 @@ typescript@^3.9.7: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== +undici@^5.13.0: + version "5.22.1" + resolved "https://registry.yarnpkg.com/undici/-/undici-5.22.1.tgz#877d512effef2ac8be65e695f3586922e1a57d7b" + integrity sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw== + dependencies: + busboy "^1.6.0" + union-value@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" @@ -2786,6 +3462,37 @@ worker-farm@^1.7.0: dependencies: errno "~0.1.7" +workerd@1.20230710.0: + version "1.20230710.0" + resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20230710.0.tgz#7e404cb75fa6c1ffcbff0e9211704feab80bc738" + integrity sha512-4iC+8w3UNixJ+b6GA2VOG2B6rnfSbSnm7Fnvsvq9iJuolG34fnD9xrfaXu6oN7H3Wyby3z8OIm0fy3szTvuRcg== + optionalDependencies: + "@cloudflare/workerd-darwin-64" "1.20230710.0" + "@cloudflare/workerd-darwin-arm64" "1.20230710.0" + "@cloudflare/workerd-linux-64" "1.20230710.0" + "@cloudflare/workerd-linux-arm64" "1.20230710.0" + "@cloudflare/workerd-windows-64" "1.20230710.0" + +wrangler@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-3.2.0.tgz#1f1336b2b4266281becc79b74e5a0abba8b86525" + integrity sha512-Fne5c91uolV4+E0B60F/meWbD/sr/oSPBfr6x1gapu6I7Ipu5uUt29K/fuGRgXRQcVVKnd5k3fS++ruuLODoxA== + dependencies: + "@cloudflare/kv-asset-handler" "^0.2.0" + "@esbuild-plugins/node-globals-polyfill" "^0.1.1" + "@esbuild-plugins/node-modules-polyfill" "^0.1.4" + blake3-wasm "^2.1.5" + chokidar "^3.5.3" + esbuild "0.16.3" + miniflare "3.20230710.0" + nanoid "^3.3.3" + path-to-regexp "^6.2.0" + selfsigned "^2.0.1" + source-map "^0.7.4" + xxhash-wasm "^1.0.1" + optionalDependencies: + fsevents "~2.3.2" + wrap-ansi@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" @@ -2800,11 +3507,21 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +ws@^8.11.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +xxhash-wasm@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-1.0.1.tgz#8a0f0eeb3ab76c16bbb889f5acca286b62d98626" + integrity sha512-Lc9CTvDrH2vRoiaUzz25q7lRaviMhz90pkx6YxR9EPYtF99yOJnv2cB+CQ0hp/TLoqrUsk8z/W2EN31T568Azw== + y18n@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" @@ -2843,3 +3560,17 @@ yargs@^13.3.2: which-module "^2.0.0" y18n "^4.0.0" yargs-parser "^13.1.2" + +youch@^3.2.2: + version "3.2.3" + resolved "https://registry.yarnpkg.com/youch/-/youch-3.2.3.tgz#63c94ea504950a1a5bf1d5969439addba6c726e2" + integrity sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw== + dependencies: + cookie "^0.5.0" + mustache "^4.2.0" + stacktracey "^2.1.8" + +zod@^3.20.6: + version "3.21.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" + integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== From 5d066ab07deb2bae96509401657c5dae0695a219 Mon Sep 17 00:00:00 2001 From: Jan Zheng Date: Wed, 13 Sep 2023 15:43:14 +1000 Subject: [PATCH 21/24] now works with non-table collections --- .gitignore | 3 ++- ...99f38265d16f655b2859a099b600004759d03e9067 | 1 - .wrangler/state/v3/cache/default/db.sqlite | Bin 24576 -> 28672 bytes package.json | 4 +-- src/api/notion.ts | 2 +- src/index.ts | 1 + src/routes/collection.ts | 18 +++++++++++++- src/routes/page.ts | 23 +++++++++++------- 8 files changed, 37 insertions(+), 15 deletions(-) delete mode 100644 .wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 diff --git a/.gitignore b/.gitignore index fc574ae..547d563 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ dist node_modules worker -wrangler.toml \ No newline at end of file +wrangler.toml +.wrangler \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 b/.wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 deleted file mode 100644 index a915c0c..0000000 --- a/.wrangler/state/v3/cache/default/blobs/9c4bc18641eeef2ff7ae8f58065ebd73fbcfce99f38265d16f655b2859a099b600004759d03e9067 +++ /dev/null @@ -1 +0,0 @@ -{"error":"Route not found!","routes":["/v1/page/:pageId","/v1/table/:pageId","/v1/user/:pageId","/v1/asset?url=[filename]&blockId=[id]","/v1/:blockId"]} \ No newline at end of file diff --git a/.wrangler/state/v3/cache/default/db.sqlite b/.wrangler/state/v3/cache/default/db.sqlite index 43257a8ea5b2f34752c825f3a878343717a844db..6c9ed13be8b4c519779f3d8d1349aaa8f10c3a06 100644 GIT binary patch delta 2907 zcmd5;O>7ip7~W~SY+HV&4P9Cgbc+HpcDmpH&ni}eQ6ci9Vn~bv-)|w7wqaW_8nSMx zMvNw!J$O-Lf)|dYdNPVey%-EJkvk`2V!W8hK@a-Qwg|+Es4+T+*>7jQnY_>QKF{;c za~~(qT})oPsaPx&3Z>U8V@dJMp?A|29qA>wP$;E8rN7PZm8@2u z!c{jlF%jI%k*Ue55;0h7MTQww857oL8e^1sB&?8}Q4#sjjlYg?!8~mcmQf^m#s3)I-W_66pzx_U_^EA1KW1( zcyPzIgJcvP+_~q`hj(v#aCF+o%@&Aza);k49pa7$mN6qq#+1~V(o|-`MiT{!GcCN8HrpD4Yh?b?QIZ*54Yg-ro9o-)-}cjVw!&zIl_K z>KHAj>k8?m^t<$8dLccVev!VHo=)FR$I}z(vGk?1l|G){mp+us;>(o$Hc2&opmM8gq}Y z?r!!pv*HUYm$tx-vZ|Rd7D&dRX`-maPGTGhmlnk!u=OHJ;*}C8M5G)SMlsDR7+IvC zTMp$1L6mF5LO?DgZKy3={;Y^GL8$fB+N~>RCr2tsRJP5IR|uN_sPAGj|K+|na)&1$ z?#WRUTZcy0n5)`IgQA4VC>%ptBZIM1I$GnXPIBZP_QB$X)ve;n;lt-nU ziHZ>-Q2^vl-XSC7R5M8=p-ch`3M<)eLx{p-0u%+bAkKv@mLy(m;6I2oWQt_;IbGY63y7k0QF064JQA~>qr;MOh$j))plt^W1v0Uhi+@w{Kt zJvZFe+tRMdTlY_cd8u4({F}i{At@C?kt<7y4uU&G96=%?*RSQ|l}JzotN5RiierSk=;5an-OQPAeZQ*48_ii(Gnb zm2)6r;skY3c?{Ds$Y=s(Cg>n7C>Sft3F5fT972*1%#5Z%g8|_iA#r)awWrnZvyIlU Ksv!Y&R(=KK;yEw? delta 293 zcmZp8z}Rqrae_1}GXnzy+e8I>M&^wPOZd4M`F{fi7})rKZ{~A&%g+O3vvP0&Nj@Il z$?OWU8yjD8Pgc~|ocudPWpk7c8zUpv=0x4aO!9pE=?whe_+Rrs;J?bhpZ^s97XFp| z^Y|z8r}NkH7x8a4RG7!Pal$gz$?5h+tZ|R#CU8xjXP?H*!LV;LyTdPjVUVRPXBhYt zc~Us$ux({I!_~U6aRb~DrzNLaTBaFW7@3)-7@DP-nVKdUS(sWT8dzE;nHd0qiMgp|ih*&e mrGc3_V<*TZlMO|WOy(); router.options("*", () => new Response(null, { headers: corsHeaders })); + router.get("/v1/page/:pageId", pageRoute); router.get("/v1/table/:pageId", tableRoute); router.get("/v1/collection/:pageId", collectionRoute); diff --git a/src/routes/collection.ts b/src/routes/collection.ts index d33b5d7..6570bbe 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -16,6 +16,11 @@ export const getCollectionData = async ( notionToken?: string, raw?: boolean ) => { + + console.log('Getting collection data:', collection, collectionViewId, notionToken, raw) + + + const table = await fetchTableData( collection.value.id, collectionViewId, @@ -81,6 +86,11 @@ export const getCollectionData = async ( + + + + + export async function collectionRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); @@ -111,11 +121,17 @@ export async function collectionRoute(req: HandlerRequest) { return page.recordMap.collection_view[k] })[0]; } + + // console.log('flip flup %%_%%1231231232%', pageId, page.recordMap?.block?.[pageId]?.value?.collection_id) + // console.log('[RECORDMAP?]', JSON.stringify(page.recordMap,0,2)) + // console.log('[COLLECTION VIEW?]', JSON.stringify(collectionView,0,2)) if (collectionView) { + let collectionId = page.recordMap?.block?.[pageId]?.value?.collection_id collection = Object.keys(page.recordMap.collection).map( (k) => page.recordMap.collection[k] - ).find(view => view.value.id == collectionView.value.format.collection_pointer.id);; + // ).find(view => view.value?.id == collectionView.value?.format?.collection_pointer?.id); + ).find(view => view.value?.id == collectionId); } else { collection = Object.keys(page.recordMap.collection).map( (k) => page.recordMap.collection[k] diff --git a/src/routes/page.ts b/src/routes/page.ts index 68f1fee..5045fc4 100644 --- a/src/routes/page.ts +++ b/src/routes/page.ts @@ -8,7 +8,7 @@ export async function pageRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const page = await fetchPageById(pageId!, req.notionToken); - // console.log('->>>>>>', JSON.stringify(page,0,2)) + console.log('->>>>>>', JSON.stringify(page, 0, 2), JSON.stringify(req.params, 0, 2)) if (!req.params.pageId) { console.error(`Page not found at [ID:${req.params.pageId}]`) @@ -102,7 +102,7 @@ export async function pageRoute(req: HandlerRequest) { if (collView) { coll = Object.keys(collPage.recordMap.collection).map( (k) => collPage.recordMap.collection[k] - ).find(view => view.value.id == collView.value.format.collection_pointer.id); + ).find(view => view.value?.id == collView.value?.format?.collection_pointer?.id); } else { coll = Object.keys(collPage.recordMap.collection).map( (k) => collPage.recordMap.collection[k] @@ -115,12 +115,17 @@ export async function pageRoute(req: HandlerRequest) { // console.log('[page] collection view collections:', JSON.stringify(Object.keys(collPage.recordMap.collection).map( // (k) => collPage.recordMap.collection[k])), '!!!!!!!!!', JSON.stringify(collPage)) - const { rows, schema } = await getTableData( - coll, - collView.value.id, - req.notionToken, - true - ); + let rows, schema + if (coll && collView && collView?.value?.id) { + let data = await getTableData( + coll, + collView?.value?.id, + req.notionToken, + true + ); + rows = data.rows + schema = data.schema + } // console.log('[page] collection rows:', collView.value.id, rows, schema) @@ -129,7 +134,7 @@ export async function pageRoute(req: HandlerRequest) { allBlocks[b] = { ...allBlocks[b], collection: { - title: coll.value.name, + title: coll?.value.name, schema, types: viewIds.map((id) => { const col = collPage.recordMap.collection_view[id]; From dc9b047aac001a3c7db98df99c50ed3eaae0557f Mon Sep 17 00:00:00 2001 From: Jan Zheng Date: Thu, 12 Oct 2023 23:45:31 +1100 Subject: [PATCH 22/24] bug fix w/ collection views that dont work --- .wrangler/state/v3/cache/default/db.sqlite | Bin 28672 -> 28672 bytes src/routes/collection.ts | 15 +++++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.wrangler/state/v3/cache/default/db.sqlite b/.wrangler/state/v3/cache/default/db.sqlite index 6c9ed13be8b4c519779f3d8d1349aaa8f10c3a06..c1c92b6281da4b6971a79fa91ac19f169bce9363 100644 GIT binary patch delta 357 zcmXBQy-Nc@5Cw40ToO@9L=?G`pn?`gk-h!8T@^wQYYB*z2s?9kB7_JQmZFFVLJHl# z!bsOv1gavJTD>M1{ zYRxZiR7rKI+R6#}uJ~u4C!t+x&|-J@XFJIE8&C72BTbI%S3#0ve=oJ1EGEOt=_`90g(oo++-K U$o*p=vXyqjS*Cp9Fn0$Ff2?_J^8f$< delta 351 zcmW-dJ4*vW7)9M=xECKf>~EG3PV2=mQD6p5X6f`|~bkogH# zRuQ*W3++?c=O2iror$-&-8~#`e-iX3!E?10l>NBb^50O;E?PH1SlY--Ki*o;mba^6 z)Qxvz6gM)2ev08iL6?1_Lkf2vkGhl{cV23X#rBV=Yo8&Wjy*Qr9K(KeUJGZe>K!tsr> page.recordMap.collection[k] // ).find(view => view.value?.id == collectionView.value?.format?.collection_pointer?.id); ).find(view => view.value?.id == collectionId); - } else { + } + + // if collectionView failed (code is brittle) we get the default view + if(!collection) { collection = Object.keys(page.recordMap.collection).map( (k) => page.recordMap.collection[k] )[0]; From d7577262203af02d4546fea031be048d54c17d47 Mon Sep 17 00:00:00 2001 From: Jan Zheng Date: Mon, 20 Nov 2023 18:00:30 +1100 Subject: [PATCH 23/24] [potentially breaking] added filter/sort thruu API and params for tables --- .DS_Store | Bin 0 -> 6148 bytes package.json | 4 +- src/api/notion.ts | 72 +- src/index.ts | 16 +- src/routes/collection.ts | 326 ++++--- yarn.lock | 1896 +++++++++++++++++--------------------- 6 files changed, 1117 insertions(+), 1197 deletions(-) create mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..a99d56fd4bd0ea05fa547e3e82a114d5c463a49b GIT binary patch literal 6148 zcmeHKOHKnZ47H()O6{UcmbpSX!B7n+=m9`wDp<@gm7x0^gfnmpZUcAVz1Vz4j4Htb zA!JL*a}wL}JZX|xM0B-pmLdxgnW7Pu%7}1!bm_>ACqOMRE~JxQ8re%b66h~ZG55LL zmaMn(IsdKPwb#q_Rp0HH`0VlJ{*Z0g*Y&3DH?SdD&*}8(?67_FE&JWgM=tXRL=FiC zf`MQl7zhS_#sKbY%5-KJeJ~IV1Ox93@O(&U#L6)nmZJk*DFJ|dMi+t3T7o{wv2x6Y zSb?ay0?k#u#87j`d~&D!N5ObKqvLOUg4wsZvFCkylWHMB^rfxnF<8@;1PfU&yka|XzPhO>?+4> U$S9mI?!b5m6hfj427ZBoS6rMlkpKVy literal 0 HcmV?d00001 diff --git a/package.json b/package.json index f466862..cc32e6b 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "license": "MIT", "scripts": { "build": "webpack", - "dev": "wrangler dev", + "dev": "wrangler dev --port 8787", "preview": "wrangler preview", "deploy": "wrangler deploy", "prod": "wrangler deploy" @@ -23,6 +23,6 @@ "typescript": "^3.9.7", "webpack": "^4.43.0", "webpack-cli": "^3.3.12", - "wrangler": "^3.2.0" + "wrangler": "^3.15.0" } } diff --git a/src/api/notion.ts b/src/api/notion.ts index bbb7b0c..2bdc9f9 100644 --- a/src/api/notion.ts +++ b/src/api/notion.ts @@ -64,32 +64,13 @@ export const fetchPageById = async (pageId: string, notionToken?: string) => { return res; }; -const queryCollectionBody = { - loader: { - type: "reducer", - reducers: { - collection_group_results: { - type: "results", - limit: 999, - loadContentCover: true, - }, - "table:uncategorized:title:count": { - type: "aggregation", - aggregation: { - property: "title", - aggregator: "count", - }, - }, - }, - searchQuery: "", - userTimeZone: "Europe/Vienna", - }, -}; - export const fetchTableData = async ( collectionId: string, collectionViewId: string, - notionToken?: string + notionToken: string, + property_filter: any = {}, + sort: any = [], + limit: Number, ) => { const table = await fetchNotionData({ resource: "queryCollection", @@ -100,11 +81,34 @@ export const fetchTableData = async ( collectionView: { id: collectionViewId, }, - ...queryCollectionBody, + loader: { + type: "reducer", + reducers: { + collection_group_results: { + type: "results", + // limit: 50, + // limit: 100, + // limit: 999, + limit: limit, + loadContentCover: true, + }, + "table:uncategorized:title:count": { + type: "aggregation", + aggregation: { + property: "title", + aggregator: "count", + }, + }, + }, + searchQuery: "", + userTimeZone: "Europe/Vienna", + filter: { operator: "and", filters: property_filter.filters }, + sort, + limit, + } }, notionToken, }); - console.log('fetchTableData:', table) return table; }; @@ -121,14 +125,16 @@ export const fetchNotionUsers = async ( }); if (users && users.results) { return users.results.map((u) => { - const user = { - id: u.value.id, - firstName: u.value.given_name, - lastLame: u.value.family_name, - fullName: u.value.given_name + " " + u.value.family_name, - profilePhoto: u.value.profile_photo, - }; - return user; + if(u.value) { + const user = { + id: u.value.id, + firstName: u.value.given_name, + lastLame: u.value.family_name, + fullName: u.value.given_name + " " + u.value.family_name, + profilePhoto: u.value.profile_photo, + }; + return user; + } }); } return []; diff --git a/src/index.ts b/src/index.ts index ff9d253..ca635e3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -44,7 +44,15 @@ router.get("*", async () => createResponse( { error: `Route not found!`, - routes: ["/v1/page/:pageId", "/v1/table/:pageId", "/v1/user/:pageId", "/v1/asset?url=[filename]&blockId=[id]", "/v1/:blockId"], + routes: [ + "/v1/page/:pageId", + "/v1/table/:pageId", + "/v1/collection/:pageId", + "/v1/user/:pageId", + "/v1/search", + "/v1/block/:blockId", + "/v1/asset?url=[filename]&blockId=[id]", + "/v1/file"], }, {}, 404 @@ -69,6 +77,8 @@ const cache = (caches as any).default; // typeof env.NOTION_TOKEN !== "undefined" ? NOTION_TOKEN : undefined; const handleRequest = async (fetchEvent: FetchEvent): Promise => { + console.time("handleRequest"); // Start timer + const request = fetchEvent.request; const { pathname, searchParams } = new URL(request.url); const notionToken = @@ -111,13 +121,15 @@ const handleRequest = async (fetchEvent: FetchEvent): Promise => { fetchEvent.waitUntil(getResponseAndPersist()); return response; } + + console.timeEnd("handleRequest"); // End timer return getResponseAndPersist(); }; // cloudflare workers entry -self.addEventListener("fetch", async (event: Event) => { +self.addEventListener("fetch", (event: Event) => { const fetchEvent = event as FetchEvent; fetchEvent.respondWith(handleRequest(fetchEvent)); }); \ No newline at end of file diff --git a/src/routes/collection.ts b/src/routes/collection.ts index b1b3552..a2501eb 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -1,6 +1,6 @@ -import { fetchPageById, fetchTableData, fetchNotionUsers } from "../api/notion"; + +import { fetchPageById, fetchTableData, fetchNotionUsers, fetchNotionAsset } from "../api/notion"; import { parsePageId, getNotionValue } from "../api/utils"; -import { fetchNotionAsset } from "../api/notion"; import { RowContentType, @@ -14,19 +14,23 @@ export const getCollectionData = async ( collection: CollectionType, collectionViewId: string, notionToken?: string, - raw?: boolean + raw?: boolean, + filter?: any, + sort?: any, + limit, ) => { - console.log('Getting collection data:', collection, collectionViewId, notionToken, raw) - - - + // console.log('Getting collection data:', collection, collectionViewId, notionToken, raw, filter) const table = await fetchTableData( collection.value.id, collectionViewId, - notionToken + notionToken, + filter, + sort, + limit, ); + // console.log('fetchTableData:::::::::', table) const collectionRows = collection.value.schema; const collectionColKeys = Object.keys(collectionRows); @@ -35,7 +39,10 @@ export const getCollectionData = async ( (id: string) => table.recordMap.block[id] ); - const tableData = tableArr.filter( + + + // filter for relevant rows + let tableData = tableArr.filter( (b) => b.value && b.value.properties && b.value.parent_id === collection.value.id ); @@ -44,14 +51,18 @@ export const getCollectionData = async ( const rows: Row[] = []; const tds = [] - for (const td of tableData) { - let row: Row = { id: td.value.id, format: td.value.format }; - tds.push(td) + + + + for (const tableRow of tableData) { + // console.log('tableRow:', tableRow) + let row: Row = { id: tableRow.value.id, format: tableRow.value.format }; + tds.push(tableRow) for (const key of collectionColKeys) { - const val = td.value.properties[key]; + const val = tableRow.value.properties[key]; if (val) { const schema = collectionRows[key]; - row[schema.name] = raw ? val : getNotionValue(val, schema.type, td); + row[schema.name] = raw ? val : getNotionValue(val, schema.type, tableRow); if (schema.type === "person" && row[schema.name]) { const users = await fetchNotionUsers(row[schema.name] as string[]); row[schema.name] = users as any; @@ -65,11 +76,12 @@ export const getCollectionData = async ( row.format.page_cover = asset.url.signedUrls[0] } + row['Created By'] = await fetchNotionUsers([tableRow.value?.['created_by_id']]); rows.push(row); } const name: String = collection.value.name.join('') - + return { rows, schema: collectionRows, name, tableArr}; }; @@ -92,10 +104,17 @@ export const getCollectionData = async ( export async function collectionRoute(req: HandlerRequest) { + console.time("collectionRoute"); // Start timer + const pageId = parsePageId(req.params.pageId); + const viewName = req.searchParams.get("view"); // collection view + const limit = Number(req.searchParams.get("limit")) || 150; // collection view const page = await fetchPageById(pageId!, req.notionToken); const pageBlock = page.recordMap.block[pageId!]; - + let payload: string|null = req.searchParams.get("payload"); // ["rows", "columns"] etc. — array of keys to be returned; will return EVERYTHING if left empty + let payloadArr: string[] = []; + if (payload) payloadArr = payload.split(',') + if (!page.recordMap.collection) return createResponse( JSON.stringify({ error: "No table found on Notion page: " + pageId }), @@ -111,12 +130,12 @@ export async function collectionRoute(req: HandlerRequest) { if (pageBlock.value.view_ids && pageBlock.value.view_ids?.length > 0) { - collectionView = Object.keys(page.recordMap.collection_view).map((k) => { + Object.keys(page.recordMap.collection_view).map((k) => { views.push(page.recordMap.collection_view[k]['value']) return page.recordMap.collection_view[k] }).find(view => view.value.id == pageBlock.value.view_ids?.[0]); } else { - collectionView = Object.keys(page.recordMap.collection_view).map((k) => { + Object.keys(page.recordMap.collection_view).map((k) => { views.push(page.recordMap.collection_view[k]['value']) return page.recordMap.collection_view[k] })[0]; @@ -124,11 +143,18 @@ export async function collectionRoute(req: HandlerRequest) { // ok the above is doing some crazy stuff; we just want the FIRST view (e.g. the left-most one) // have to rewrap it here into {value: ... } (ugh) - collectionView = views[0] ? {value: views[0]} : collectionView + + if (viewName) { + collectionView = { value: views.find(v => v.name == viewName) || views[0] } + } else { + // default to first view + collectionView = { value: views[0] } + } + - console.log('flip flup %%_%%1231231232%', pageId, page.recordMap?.block?.[pageId]?.value?.collection_id) - console.log('[RECORDMAP?]', JSON.stringify(page.recordMap,0,2)) - console.log('[COLLECTION VIEW?]', JSON.stringify(collectionView,0,2), 'looffppopo', JSON.stringify(views,0,2)) + // console.log('flip flup %%_%%1231231232%', pageId, page.recordMap?.block?.[pageId]?.value?.collection_id) + // console.log('[RECORDMAP?]', JSON.stringify(page.recordMap,0,2)) + // console.log('[COLLECTION VIEW?]', JSON.stringify(collectionView,0,2), 'looffppopo', JSON.stringify(views,0,2)) if (collectionView) { let collectionId = page.recordMap?.block?.[pageId]?.value?.collection_id @@ -148,135 +174,181 @@ export async function collectionRoute(req: HandlerRequest) { + let query_filter = collectionView.value?.['query2']?.filter ? collectionView.value?.['query2'].filter : {} + let query_sort = collectionView.value?.['query2'].sort ? collectionView.value?.['query2'].sort : {} + + if (collectionView.value?.format.property_filters) { + if (!query_filter.filters) + query_filter.filters = [] + query_filter.filters = [...query_filter?.filters, ...collectionView.value?.format.property_filters.map(f => f.filter)] + // query_filter.filters = [...query_filter?.filters, ...collectionView.value?.format.property_filters] + } + + + const tableData = await getCollectionData( collection, collectionView.value.id, - req.notionToken + req.notionToken, + null, + query_filter, + query_sort, + limit, ); // console.log('[collection] table data:', JSON.stringify(collectionView.value)) // console.log('[collection] view:', JSON.stringify(page.recordMap)) // clean up the table order - const tableProps = views[0].format.table_properties + const tableProps = collectionView.value.format.table_properties if(tableProps) {// only table views have tableProps; galleries etc. don't tableProps.map((tableCol:any, i:any) => { tableProps[i] = { ...tableProps[i], ...tableData.schema[tableCol['property']] } }) } - let query_filter = views[0]['query2'] ? views[0]['query2'].filter : undefined - let query_sort = views[0]['query2'] ? views[0]['query2'].sort : undefined - - - // filters result array in place - const _filter = ({filter, property}: {filter:any, property:any}) => { - if(!filter) - return - - // property = column name - let _op = filter.operator // "string_contains" etc. - let _type = filter.value && filter.value.type // "exact" - let _text = filter.value && filter.value.value // text matching against; "filter text" - let column = tableProps.find((c: any)=>c.property==property) - - switch (_op) { - case 'string_contains': - tableData.rows = tableData.rows.filter((row:any)=>row[column.name] &&row[column.name].includes(_text)) - break; - case 'string_is': - tableData.rows = tableData.rows.filter((row:any)=>row[column.name] == _text) - break; - case 'string_does_not_contain': - tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && !row[column.name].includes(_text)) - break; - case 'string_starts_with': - tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].startsWith(_text)) - break; - case 'string_ends_with': - tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].endsWith(_text)) - break; - case 'is_empty': - tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && (!row[column.name] || row[column.name] == '')) - break; - case 'is_not_empty': - tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name] !== '') - break; - case 'enum_is_not': - tableData.rows = tableData.rows.filter((row:any)=> row[column.name] !== _text) - break; - case 'enum_is': - tableData.rows = tableData.rows.filter((row:any)=> row[column.name] == _text) - break; - case 'enum_contains': - tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name].includes(_text)) - break; - case 'enum_does_not_contain': - tableData.rows = tableData.rows.filter((row: any)=> { - return !row[column.name] || (!row[column.name].includes(_text)) - }) - break; - } - } - - - - - if(query_filter && query_filter.filters && query_filter.filters.length>0) { - let op = query_filter.operator - - query_filter.filters.map((filter:any)=>{ - _filter(filter) - }) + // filters result array in place + const _filter = ({filter, property}: {filter:any, property:any}) => { + if(!filter) + return + + // property = column name + let _op = filter.operator // "string_contains" etc. + let _type = filter.value && filter.value.type // "exact" + let _text = filter.value && filter.value.value // text matching against; "filter text" + let column = tableProps.find((c: any)=>c.property==property) + + switch (_op) { + // case 'person_contains': + // this is already done on view filtering + // console.log('person_contains:', _text) + // tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].includes(_text)) + // console.log('person_contains:', tableData.rows) + // break; + // case 'date_is_after': + // tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && new Date(row[column.name]) > new Date(_text)) + // break; + case 'string_contains': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] &&row[column.name].includes(_text)) + break; + case 'string_is': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] == _text) + break; + case 'string_does_not_contain': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && !row[column.name].includes(_text)) + break; + case 'string_starts_with': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].startsWith(_text)) + break; + case 'string_ends_with': + tableData.rows = tableData.rows.filter((row:any)=>row[column.name] && row[column.name].endsWith(_text)) + break; + case 'date_is_before': + tableData.rows = tableData.rows.filter((row: any) => row[column.name] && new Date(row[column.name]) < new Date(_text)) + break; + case 'number_is_greater': + tableData.rows = tableData.rows.filter((row: any) => row[column.name] && row[column.name] > _text) + break; + case 'number_is_less': + tableData.rows = tableData.rows.filter((row: any) => row[column.name] && row[column.name] < _text) + break; + case 'boolean_is_true': + tableData.rows = tableData.rows.filter((row: any) => row[column.name] === true) + break; + case 'boolean_is_false': + tableData.rows = tableData.rows.filter((row: any) => row[column.name] === false) + break; + case 'is_empty': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && (!row[column.name] || row[column.name] == '')) + break; + case 'is_not_empty': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name] !== '') + break; + case 'enum_is_not': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] !== _text) + break; + case 'enum_is': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] == _text) + break; + case 'enum_contains': + tableData.rows = tableData.rows.filter((row:any)=> row[column.name] && row[column.name].includes(_text)) + break; + case 'enum_does_not_contain': + tableData.rows = tableData.rows.filter((row: any)=> { + return !row[column.name] || (!row[column.name].includes(_text)) + }) + break; } + } + + // legacy; this is better done from view filtering + if(query_filter && query_filter.filters && query_filter.filters.length>0) { + // let op = query_filter.operator + query_filter.filters.map((filter:any)=>{ + _filter(filter) + }) + } - - - - + // legacy; this is done through Notion API sorting // return sorted data // NOTE: sorting by A-Z doesn't always return the same results as Notion, since we're not sorting by block ID's position, just a-z - if(query_sort && query_sort.length>0) { - query_sort.map((qsort:any)=>{ - let column = tableProps.find((c:any)=>c.property==qsort.property) - if(column.type=='multi_select' || column.type=='select') { // sort by column options array rank of first item, rather than a-z + // if(query_sort && query_sort.length>0) { + // query_sort.map((qsort:any)=>{ + // let column = tableProps.find((c:any)=>c.property==qsort.property) + // if(column.type=='multi_select' || column.type=='select') { // sort by column options array rank of first item, rather than a-z - if(qsort.direction=='ascending') { - tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index - let _a = column.options.findIndex((e:any)=>e.value==a[column.name] && a[column.name][0]) - let _b = column.options.findIndex((e:any)=>e.value==b[column.name] && b[column.name][0]) - return _a < _b ? -1 : 1 - }) - } - else { - tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index - let _a = column.options.findIndex((e:any)=>e.value==a[column.name] && a[column.name][0]) - let _b = column.options.findIndex((e:any)=>e.value==b[column.name] && b[column.name][0]) - return _a > _b ? -1 : 1 - }) - } - } else { - if(qsort.direction=='ascending') { - // tableData.rows = tableData.rows.sort((a,b) => {console.log('>>',a[column.name],b[column.name], a[column.name] < b[column.name]); return a[column.name] < b[column.name] ? -1 : 1}) - tableData.rows = tableData.rows.sort((a,b) => a[column.name] > b[column.name] ? 1 : -1) - } else - tableData.rows = tableData.rows.sort((a,b) => a[column.name] < b[column.name] ? 1 : -1) - } - }) + // if(qsort.direction=='ascending') { + // tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index + // let _a = column.options.findIndex((e:any)=>e.value==a[column.name] && a[column.name][0]) + // let _b = column.options.findIndex((e:any)=>e.value==b[column.name] && b[column.name][0]) + // return _a < _b ? -1 : 1 + // }) + // } + // else { + // tableData.rows = tableData.rows.sort((a:any,b:any) => { // get the column ranks by matching against the value and getting their index, then sorting by col index + // let _a = column.options.findIndex((e:any)=>e.value==a[column.name] && a[column.name][0]) + // let _b = column.options.findIndex((e:any)=>e.value==b[column.name] && b[column.name][0]) + // return _a > _b ? -1 : 1 + // }) + // } + // } else { + // if(qsort.direction=='ascending') { + // // tableData.rows = tableData.rows.sort((a,b) => {console.log('>>',a[column.name],b[column.name], a[column.name] < b[column.name]); return a[column.name] < b[column.name] ? -1 : 1}) + // tableData.rows = tableData.rows.sort((a,b) => a[column.name] > b[column.name] ? 1 : -1) + // } else + // tableData.rows = tableData.rows.sort((a,b) => a[column.name] < b[column.name] ? 1 : -1) + // } + // }) + // } + + // only shows on cf devtools (press 'd' when running) + console.timeEnd("collectionRoute"); // End timer + + let returnObj = { + ...tableData, + columns: tableProps, + collection: collection, + sort: collectionView.value?.page_sort, + query_filter, + query_sort, + views, + } + + if (payloadArr.length > 0) { + let filteredReturnObj = {}; + payloadArr.forEach(key => { + if (returnObj.hasOwnProperty(key)) { + filteredReturnObj[key] = returnObj[key]; + } + }); + return createResponse(filteredReturnObj); + } else { + // return everything + return createResponse(returnObj); } - - return createResponse({ - ...tableData, - columns: tableProps, - collection: collection, - sort: views[0].page_sort, - query_filter, - query_sort, - views, - }); } diff --git a/yarn.lock b/yarn.lock index e2e9fad..a6db48f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9,170 +9,191 @@ dependencies: mime "^3.0.0" -"@cloudflare/workerd-darwin-64@1.20230710.0": - version "1.20230710.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230710.0.tgz#e424757c33de39e2a506e22443726ec4ee215f26" - integrity sha512-TDEgTfzTkveW+U0qtg9/60PXbl2klnEso0oio501zAnY2SOC1x7M0qb8UkhvjHFUVpwdykUzTPWPIWFBcF1ibA== - -"@cloudflare/workerd-darwin-arm64@1.20230710.0": - version "1.20230710.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230710.0.tgz#bfc29599610ff7e32c02a28c956a3c21cde38ef7" - integrity sha512-dxBwnKcj7TiM1JGiODg0LASa25A9P0XLeMkmF8YCECZoq+3QLH/uY4Vbm1xeEy8iXUZrt/uYN72bBE83vY4HIQ== - -"@cloudflare/workerd-linux-64@1.20230710.0": - version "1.20230710.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230710.0.tgz#108f73ba039f2f4bfed8a450e5327a09a0dfcc46" - integrity sha512-WrKZwL76i51jQLFpSxklpRSm2s8T9Xf6tVzQaiLTtpguKZSF/CTAyjjEOVfS7FXk+Te8lyAJAFQnj5QHoJ3pzA== - -"@cloudflare/workerd-linux-arm64@1.20230710.0": - version "1.20230710.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230710.0.tgz#66613b11b4e7c14b4122c85c61b648df6588bb8a" - integrity sha512-eWdbOoqFqQ4m1/Wwy2dRDaOVXjOmWGjwBliU8pvm2m9RjfRTdfik7z6E3vOkalxqJDHiJ0f8SUykKz2oM1lD0A== - -"@cloudflare/workerd-windows-64@1.20230710.0": - version "1.20230710.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230710.0.tgz#0802961da9d6dc02935da9eae9183e0dbf4edf2a" - integrity sha512-P5ihH98Pb72HrsVsvb/HCSezvAvEtPeVQVBKgIclNE9e0fkA4zX9QMzBBFvLy3yr0YLf4r7MO2tNnt7JFnheGA== +"@cloudflare/workerd-darwin-64@1.20231030.0": + version "1.20231030.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20231030.0.tgz#a5376fb484ca80c2a35d5efd1a5e9de0f4ae2a92" + integrity sha512-J4PQ9utPxLya9yHdMMx3AZeC5M/6FxcoYw6jo9jbDDFTy+a4Gslqf4Im9We3aeOEdPXa3tgQHVQOSelJSZLhIw== + +"@cloudflare/workerd-darwin-arm64@1.20231030.0": + version "1.20231030.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20231030.0.tgz#a25da268440c927d9aeeb81c0c2027a04990262f" + integrity sha512-WSJJjm11Del4hSneiNB7wTXGtBXI4QMCH9l5qf4iT5PAW8cESGcCmdHtWDWDtGAAGcvmLT04KNvmum92vRKKQQ== + +"@cloudflare/workerd-linux-64@1.20231030.0": + version "1.20231030.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20231030.0.tgz#b7fea4011db8926ca0fddfe5f3b28263594fb777" + integrity sha512-2HUeRTvoCC17fxE0qdBeR7J9dO8j4A8ZbdcvY8pZxdk+zERU6+N03RTbk/dQMU488PwiDvcC3zZqS4gwLfVT8g== + +"@cloudflare/workerd-linux-arm64@1.20231030.0": + version "1.20231030.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20231030.0.tgz#efea5320513ac84879c854e6f511bb3475e9162c" + integrity sha512-4/GK5zHh+9JbUI6Z5xTCM0ZmpKKHk7vu9thmHjUxtz+o8Ne9DoD7DlDvXQWgMF6XGaTubDWyp3ttn+Qv8jDFuQ== + +"@cloudflare/workerd-windows-64@1.20231030.0": + version "1.20231030.0" + resolved "https://registry.yarnpkg.com/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20231030.0.tgz#d1aba21f13ec65f00d1009e0686a1a8ec6c1f8dd" + integrity sha512-fb/Jgj8Yqy3PO1jLhk7mTrHMkR8jklpbQFud6rL/aMAn5d6MQbaSrYOCjzkKGp0Zng8D2LIzSl+Fc0C9Sggxjg== "@cloudflare/workers-types@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@cloudflare/workers-types/-/workers-types-2.0.0.tgz#c57162155bd83744a0fa83276ffec0ad430f14e4" - integrity sha512-SFUPQzR5aV2TBLP4Re+xNX5KfAGArcRGA44OLulBDnfblEf3J+6kFvdJAQwFhFpqru3wImwT1cX0wahk6EeWTw== + version "2.2.2" + resolved "https://registry.yarnpkg.com/@cloudflare/workers-types/-/workers-types-2.2.2.tgz#1bced16bba801d7af987da835467545bb5cc7ac6" + integrity sha512-kaMn2rueJ0PL1TYVGknTCh0X0x0d9G+FNXAFep7/4uqecEZoQb/63o6rOmMuiqI09zLuHV6xhKRXinokV/MY9A== "@cloudflare/wrangler@^1.10.3": - version "1.10.3" - resolved "https://registry.yarnpkg.com/@cloudflare/wrangler/-/wrangler-1.10.3.tgz#c0a41973cf95c1a191beb31b51e16f370625df49" - integrity sha512-mNN7Ht5tkjCDRwyHXqMdx6A7y/Wd13+r5ilWyDCUYW8by1K98Bn82pL3T+4DkqkdFS5JG4O3hHjQOAvXq/k/0Q== + version "1.21.0" + resolved "https://registry.yarnpkg.com/@cloudflare/wrangler/-/wrangler-1.21.0.tgz#d2d3cff9ed45170922cf927b7efd19d3858bc9a2" + integrity sha512-rsF1cGQT+CcTbk6d/s7c/CWOnKAtKi26LSkSbjDPnXsaEMso3RGRPWdStav/xmMLbvKOeDdtL8NDoxrtimrpQg== dependencies: - binary-install "0.0.1" + axios "^0.21.1" + rimraf "^3.0.2" + tar "^6.1.10" -"@esbuild-plugins/node-globals-polyfill@^0.1.1": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.1.1.tgz#a313ab3efbb2c17c8ce376aa216c627c9b40f9d7" - integrity sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg== +"@esbuild-plugins/node-globals-polyfill@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz#0e4497a2b53c9e9485e149bc92ddb228438d6bcf" + integrity sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw== -"@esbuild-plugins/node-modules-polyfill@^0.1.4": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.1.4.tgz#eb2f55da11967b2986c913f1a7957d1c868849c0" - integrity sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg== +"@esbuild-plugins/node-modules-polyfill@^0.2.2": + version "0.2.2" + resolved "https://registry.yarnpkg.com/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz#cefa3dc0bd1c16277a8338b52833420c94987327" + integrity sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA== dependencies: escape-string-regexp "^4.0.0" rollup-plugin-node-polyfills "^0.2.1" -"@esbuild/android-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz#6af6d16be6d534d776a51fc215bfd81a68906d2c" - integrity sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg== - -"@esbuild/android-arm@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.3.tgz#2a091222f3b1928e3246fb3c5202eaca88baab67" - integrity sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA== - -"@esbuild/android-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.3.tgz#a6d749c58b022d371dc40d50ac1bb4aebd1eb953" - integrity sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ== - -"@esbuild/darwin-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz#92d1826ed2f21dcac5830b70d7215c6afbb744e2" - integrity sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw== - -"@esbuild/darwin-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz#7fc3570c2b16e9ff4fc178593a0a4adb1ae8ea57" - integrity sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ== - -"@esbuild/freebsd-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz#16735ce16f8c9a4e7289e9e259aa01a8d9874307" - integrity sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw== - -"@esbuild/freebsd-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz#f4edd1464cb072799ed6b8ab5178478e71c13459" - integrity sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug== - -"@esbuild/linux-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz#4b7ae6fe3618d9a40d6ca39c6edc991ac1447203" - integrity sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ== - -"@esbuild/linux-arm@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz#4b3e9f849822e16a76a70844c4db68075b259a58" - integrity sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ== - -"@esbuild/linux-ia32@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz#2ff3936b91bfff62f9ecf7f6411ef399b29ed22d" - integrity sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA== - -"@esbuild/linux-loong64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz#ff8aa59f49d9ccbc1ff952ba1f5cd01a534562df" - integrity sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw== - -"@esbuild/linux-mips64el@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz#5dd5e118071c3912df69beedbfd11fb117f0fe5e" - integrity sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw== - -"@esbuild/linux-ppc64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz#36c62e24eae7fa3f0d921506da8fc1e6098a1364" - integrity sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q== - -"@esbuild/linux-riscv64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz#f0fec8e7affb5bcc817fefc61a21cbb95539e393" - integrity sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ== - -"@esbuild/linux-s390x@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz#22e10edd6e91f53c2e1f60e46abd453d7794409b" - integrity sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ== - -"@esbuild/linux-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz#38388b73fd9eebe45b073d7d8099b9c2e54f7139" - integrity sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w== - -"@esbuild/netbsd-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz#e0270569567f1530b8dbe6d11d5b4930b9cc71ae" - integrity sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA== - -"@esbuild/openbsd-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz#3b16642d443848bca605f33ee3978a1890911e6d" - integrity sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg== - -"@esbuild/sunos-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz#a838f247867380f0ae25ce1936dc5ab6f57b7734" - integrity sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw== - -"@esbuild/win32-arm64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz#bedd9bef5fb41f89ce2599f1761973cf6d6a67b6" - integrity sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg== - -"@esbuild/win32-ia32@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz#49800aa812d8cc35ceef61e8d3b01224684cc0b1" - integrity sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ== - -"@esbuild/win32-x64@0.16.3": - version "0.16.3" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz#94047dae921949cfb308117d993c4b941291ae10" - integrity sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow== +"@esbuild/android-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd" + integrity sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA== + +"@esbuild/android-arm@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d" + integrity sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A== + +"@esbuild/android-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1" + integrity sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww== + +"@esbuild/darwin-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276" + integrity sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg== + +"@esbuild/darwin-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb" + integrity sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw== + +"@esbuild/freebsd-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2" + integrity sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ== + +"@esbuild/freebsd-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4" + integrity sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ== + +"@esbuild/linux-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb" + integrity sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg== + +"@esbuild/linux-arm@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a" + integrity sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA== + +"@esbuild/linux-ia32@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a" + integrity sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ== + +"@esbuild/linux-loong64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72" + integrity sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ== + +"@esbuild/linux-mips64el@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289" + integrity sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A== + +"@esbuild/linux-ppc64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7" + integrity sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg== + +"@esbuild/linux-riscv64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09" + integrity sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA== + +"@esbuild/linux-s390x@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829" + integrity sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q== + +"@esbuild/linux-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4" + integrity sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw== + +"@esbuild/netbsd-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462" + integrity sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q== + +"@esbuild/openbsd-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691" + integrity sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g== + +"@esbuild/sunos-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273" + integrity sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg== + +"@esbuild/win32-arm64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f" + integrity sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag== + +"@esbuild/win32-ia32@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03" + integrity sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw== + +"@esbuild/win32-x64@0.17.19": + version "0.17.19" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" + integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== + +"@fastify/busboy@^2.0.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@fastify/busboy/-/busboy-2.1.0.tgz#0709e9f4cb252351c609c6e6d8d6779a8d25edff" + integrity sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA== + +"@types/node-forge@^1.3.0": + version "1.3.9" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.9.tgz#0fe4a7ba69c0b173f56e6de65d0eae2c1dd4bbfe" + integrity sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ== + dependencies: + "@types/node" "*" + +"@types/node@*": + version "20.9.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.9.2.tgz#002815c8e87fe0c9369121c78b52e800fadc0ac6" + integrity sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg== + dependencies: + undici-types "~5.26.4" "@types/node@^14.0.24": - version "14.0.24" - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.24.tgz#b0f86f58564fa02a28b68f8b55d4cdec42e3b9d6" - integrity sha512-btt/oNOiDWcSuI721MdL8VQGnjsKjlTMdrKyTcLCKeQp/n4AAMFJ961wMbp+09y8WuGPClDEv07RIItdXKIXAA== + version "14.18.63" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b" + integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== "@webassemblyjs/ast@1.9.0": version "1.9.0" @@ -330,19 +351,19 @@ integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== acorn-walk@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== + version "8.3.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.0.tgz#2097665af50fd0cf7a2dfccd2b9368964e66540f" + integrity sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA== acorn@^6.4.1: - version "6.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" - integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== + version "6.4.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== acorn@^8.8.0: - version "8.10.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== + version "8.11.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" + integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== ajv-errors@^1.0.0: version "1.0.1" @@ -350,14 +371,14 @@ ajv-errors@^1.0.0: integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: - version "3.5.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.0.tgz#5c894537098785926d71e696114a53ce768ed773" - integrity sha512-eyoaac3btgU8eJlvh01En8OCKzRqlLe2G5jDsCr3RiE2uLGMEEB1aaGwVVpwR8M95956tGH6R+9edC++OvzaVw== + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv@^6.1.0, ajv@^6.10.2: - version "6.12.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" - integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -365,9 +386,9 @@ ajv@^6.1.0, ajv@^6.10.2: uri-js "^4.2.2" ansi-regex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" @@ -376,6 +397,13 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" +ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" @@ -384,14 +412,6 @@ anymatch@^2.0.0: micromatch "^3.1.4" normalize-path "^2.1.1" -anymatch@~3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" @@ -408,7 +428,7 @@ aproba@^1.1.1: arr-diff@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== arr-flatten@^1.1.0: version "1.1.0" @@ -418,12 +438,12 @@ arr-flatten@^1.1.0: arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== array-unique@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== as-table@^1.0.36: version "1.0.55" @@ -432,56 +452,52 @@ as-table@^1.0.36: dependencies: printable-characters "^1.0.42" -asn1.js@^4.0.0: - version "4.10.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" - integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== +asn1.js@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== dependencies: bn.js "^4.0.0" inherits "^2.0.1" minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" assert@^1.1.1: - version "1.5.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" - integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + version "1.5.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.1.tgz#038ab248e4ff078e7bc2485ba6e6388466c78f76" + integrity sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A== dependencies: - object-assign "^4.1.1" - util "0.10.3" + object.assign "^4.1.4" + util "^0.10.4" assign-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + version "1.0.6" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.6.tgz#52f1d9403818c179b7561e11a5d1b77eb2160e77" + integrity sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg== atob@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -axios@^0.19.0: - version "0.19.2" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.2.tgz#3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27" - integrity sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA== +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== dependencies: - follow-redirects "1.5.10" + follow-redirects "^1.14.0" balanced-match@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base64-js@^1.0.2: - version "1.3.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" - integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== - -base64-js@^1.3.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -499,14 +515,6 @@ base@^0.11.1: mixin-deep "^1.2.0" pascalcase "^0.1.1" -better-sqlite3@^8.1.0: - version "8.4.0" - resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-8.4.0.tgz#aa27bbc6bb42bb438fc55c88b146fcfe5978fa76" - integrity sha512-NmsNW1CQvqMszu/CFAJ3pLct6NEFlNfuGM6vw72KHkjOD1UDnL96XNN1BMQc1hiHo8vE2GbOWQYIpZ+YM5wrZw== - dependencies: - bindings "^1.5.0" - prebuild-install "^7.1.0" - big.js@^5.2.2: version "5.2.2" resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" @@ -518,21 +526,9 @@ binary-extensions@^1.0.0: integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== binary-extensions@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" - integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== - -binary-install@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/binary-install/-/binary-install-0.0.1.tgz#bcb08ff8f5adcf9e4b4cb33af89b530f5ae6649b" - integrity sha512-axr6lqB4ec/pkEOb/JMnZpfcroWv1zT48pVz1oQHG7XmGkS77vmdxmP1btuH79lWQdy9e2MVw/uW0D8siopkRg== - dependencies: - axios "^0.19.0" - env-paths "^2.2.0" - mkdirp "^0.5.1" - rimraf "^3.0.0" - tar "^5.0.5" - universal-url "^2.0.0" + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== bindings@^1.5.0: version "1.5.0" @@ -541,15 +537,6 @@ bindings@^1.5.0: dependencies: file-uri-to-path "1.0.0" -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - blake3-wasm@^2.1.5: version "2.1.5" resolved "https://registry.yarnpkg.com/blake3-wasm/-/blake3-wasm-2.1.5.tgz#b22dbb84bc9419ed0159caa76af4b1b132e6ba52" @@ -560,15 +547,15 @@ bluebird@^3.5.5: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: - version "4.11.9" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== -bn.js@^5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" - integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== +bn.js@^5.0.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== brace-expansion@^1.1.7: version "1.1.11" @@ -594,17 +581,17 @@ braces@^2.3.1, braces@^2.3.2: split-string "^3.0.2" to-regex "^3.0.1" -braces@^3.0.1, braces@~3.0.2: +braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== dependencies: fill-range "^7.0.1" -brorand@^1.0.1: +brorand@^1.0.1, brorand@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== browserify-aes@^1.0.0, browserify-aes@^1.0.4: version "1.2.0" @@ -637,28 +624,28 @@ browserify-des@^1.0.0: inherits "^2.0.1" safe-buffer "^5.1.2" -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" - integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= +browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== dependencies: - bn.js "^4.1.0" + bn.js "^5.0.0" randombytes "^2.0.1" browserify-sign@^4.0.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" - integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== + version "4.2.2" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" + integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" + bn.js "^5.2.1" + browserify-rsa "^4.1.0" create-hash "^1.2.0" create-hmac "^1.1.7" - elliptic "^6.5.2" + elliptic "^6.5.4" inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" + parse-asn1 "^5.1.6" + readable-stream "^3.6.2" + safe-buffer "^5.2.1" browserify-zlib@^0.2.0: version "0.2.0" @@ -668,14 +655,14 @@ browserify-zlib@^0.2.0: pako "~1.0.5" buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== buffer-xor@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== buffer@^4.3.0: version "4.9.2" @@ -686,25 +673,10 @@ buffer@^4.3.0: ieee754 "^1.1.4" isarray "^1.0.0" -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= - -busboy@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" - integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== - dependencies: - streamsearch "^1.1.0" + integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== cacache@^12.0.2: version "12.0.4" @@ -742,6 +714,15 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.5" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513" + integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ== + dependencies: + function-bind "^1.1.2" + get-intrinsic "^1.2.1" + set-function-length "^1.1.1" + camelcase@^5.0.0: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -755,7 +736,7 @@ capnp-ts@^0.7.0: debug "^4.3.1" tslib "^2.2.0" -chalk@^2.3.0, chalk@^2.4.2: +chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -764,6 +745,14 @@ chalk@^2.3.0, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" +chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" @@ -783,22 +772,7 @@ chokidar@^2.1.8: optionalDependencies: fsevents "^1.2.7" -chokidar@^3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" - integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== - dependencies: - anymatch "~3.1.1" - braces "~3.0.2" - glob-parent "~5.1.0" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.4.0" - optionalDependencies: - fsevents "~2.1.2" - -chokidar@^3.5.3: +chokidar@^3.4.1, chokidar@^3.5.3: version "3.5.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== @@ -813,17 +787,20 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" -chownr@^1.1.1, chownr@^1.1.3: +chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + chrome-trace-event@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" - integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== - dependencies: - tslib "^1.9.0" + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" @@ -855,7 +832,7 @@ cliui@^5.0.0: collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== dependencies: map-visit "^1.0.0" object-visit "^1.0.0" @@ -867,10 +844,22 @@ color-convert@^1.9.0: dependencies: color-name "1.1.3" +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== commander@^2.20.0: version "2.20.3" @@ -880,17 +869,17 @@ commander@^2.20.0: commondir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + version "1.3.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17" + integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== concat-stream@^1.5.0: version "1.6.2" @@ -910,7 +899,7 @@ console-browserify@^1.1.0: constants-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" - integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== cookie@^0.5.0: version "0.5.0" @@ -932,20 +921,20 @@ copy-concurrently@^1.0.0: copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== core-util-is@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" - integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== create-ecdh@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" - integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== dependencies: bn.js "^4.1.0" - elliptic "^6.0.0" + elliptic "^6.5.3" create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: version "1.2.0" @@ -999,22 +988,15 @@ crypto-browserify@^3.11.0: randomfill "^1.0.3" cyclist@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" - integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= + version "1.0.2" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.2.tgz#673b5f233bf34d8e602b949429f8171d9121bea3" + integrity sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA== data-uri-to-buffer@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz#d296973d5a4897a5dbe31716d118211921f04770" integrity sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA== -debug@=3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" - integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== - dependencies: - ms "2.0.0" - debug@^2.2.0, debug@^2.3.3: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" @@ -1032,36 +1014,42 @@ debug@^4.3.1: decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== +define-data-property@^1.0.1, define-data-property@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== dependencies: - mimic-response "^3.1.0" + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== +define-properties@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" define-property@^0.2.5: version "0.2.5" resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== dependencies: is-descriptor "^0.1.0" define-property@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== dependencies: is-descriptor "^1.0.0" @@ -1074,9 +1062,9 @@ define-property@^2.0.2: isobject "^3.0.1" des.js@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" - integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== + version "1.1.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" + integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== dependencies: inherits "^2.0.1" minimalistic-assert "^1.0.0" @@ -1084,12 +1072,7 @@ des.js@^1.0.0: detect-file@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= - -detect-libc@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== + integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== diffie-hellman@^5.0.0: version "5.0.3" @@ -1120,18 +1103,18 @@ duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -elliptic@^6.0.0, elliptic@^6.5.2: - version "6.5.3" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" - integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== +elliptic@^6.5.3, elliptic@^6.5.4: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== dependencies: - bn.js "^4.4.0" - brorand "^1.0.1" + bn.js "^4.11.9" + brorand "^1.1.0" hash.js "^1.0.0" - hmac-drbg "^1.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" emoji-regex@^7.0.1: version "7.0.3" @@ -1143,75 +1126,61 @@ emojis-list@^3.0.0: resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== -end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: +end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" -enhanced-resolve@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" - integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.5.0" - tapable "^1.0.0" - -enhanced-resolve@^4.1.0, enhanced-resolve@^4.1.1: - version "4.2.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz#5d43bda4a0fd447cb0ebbe71bef8deff8805ad0d" - integrity sha512-S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ== +enhanced-resolve@^4.0.0, enhanced-resolve@^4.1.1, enhanced-resolve@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" + integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== dependencies: graceful-fs "^4.1.2" memory-fs "^0.5.0" tapable "^1.0.0" -env-paths@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43" - integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== - errno@^0.1.3, errno@~0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== dependencies: prr "~1.0.1" -esbuild@0.16.3: - version "0.16.3" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.3.tgz#5868632fa23f7a8547f2a4ea359c44e946515c94" - integrity sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg== +esbuild@0.17.19: + version "0.17.19" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955" + integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw== optionalDependencies: - "@esbuild/android-arm" "0.16.3" - "@esbuild/android-arm64" "0.16.3" - "@esbuild/android-x64" "0.16.3" - "@esbuild/darwin-arm64" "0.16.3" - "@esbuild/darwin-x64" "0.16.3" - "@esbuild/freebsd-arm64" "0.16.3" - "@esbuild/freebsd-x64" "0.16.3" - "@esbuild/linux-arm" "0.16.3" - "@esbuild/linux-arm64" "0.16.3" - "@esbuild/linux-ia32" "0.16.3" - "@esbuild/linux-loong64" "0.16.3" - "@esbuild/linux-mips64el" "0.16.3" - "@esbuild/linux-ppc64" "0.16.3" - "@esbuild/linux-riscv64" "0.16.3" - "@esbuild/linux-s390x" "0.16.3" - "@esbuild/linux-x64" "0.16.3" - "@esbuild/netbsd-x64" "0.16.3" - "@esbuild/openbsd-x64" "0.16.3" - "@esbuild/sunos-x64" "0.16.3" - "@esbuild/win32-arm64" "0.16.3" - "@esbuild/win32-ia32" "0.16.3" - "@esbuild/win32-x64" "0.16.3" + "@esbuild/android-arm" "0.17.19" + "@esbuild/android-arm64" "0.17.19" + "@esbuild/android-x64" "0.17.19" + "@esbuild/darwin-arm64" "0.17.19" + "@esbuild/darwin-x64" "0.17.19" + "@esbuild/freebsd-arm64" "0.17.19" + "@esbuild/freebsd-x64" "0.17.19" + "@esbuild/linux-arm" "0.17.19" + "@esbuild/linux-arm64" "0.17.19" + "@esbuild/linux-ia32" "0.17.19" + "@esbuild/linux-loong64" "0.17.19" + "@esbuild/linux-mips64el" "0.17.19" + "@esbuild/linux-ppc64" "0.17.19" + "@esbuild/linux-riscv64" "0.17.19" + "@esbuild/linux-s390x" "0.17.19" + "@esbuild/linux-x64" "0.17.19" + "@esbuild/netbsd-x64" "0.17.19" + "@esbuild/openbsd-x64" "0.17.19" + "@esbuild/sunos-x64" "0.17.19" + "@esbuild/win32-arm64" "0.17.19" + "@esbuild/win32-ia32" "0.17.19" + "@esbuild/win32-x64" "0.17.19" escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^4.0.0: version "4.0.0" @@ -1227,26 +1196,31 @@ eslint-scope@^4.0.3: estraverse "^4.1.1" esrecurse@^4.1.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" - integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: - estraverse "^4.1.0" + estraverse "^5.2.0" -estraverse@^4.1.0, estraverse@^4.1.1: +estraverse@^4.1.1: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== +estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + estree-walker@^0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== events@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" - integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: version "1.0.3" @@ -1264,7 +1238,7 @@ exit-hook@^2.2.1: expand-brackets@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== dependencies: debug "^2.3.3" define-property "^0.2.5" @@ -1274,29 +1248,24 @@ expand-brackets@^2.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - expand-tilde@^2.0.0, expand-tilde@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= + integrity sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== dependencies: homedir-polyfill "^1.0.1" extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== dependencies: is-extendable "^0.1.0" extend-shallow@^3.0.0, extend-shallow@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== dependencies: assign-symbols "^1.0.0" is-extendable "^1.0.1" @@ -1338,7 +1307,7 @@ file-uri-to-path@1.0.0: fill-range@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== dependencies: extend-shallow "^2.0.1" is-number "^3.0.0" @@ -1386,38 +1355,31 @@ flush-write-stream@^1.0.0: inherits "^2.0.3" readable-stream "^2.3.6" -follow-redirects@1.5.10: - version "1.5.10" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a" - integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ== - dependencies: - debug "=3.1.0" +follow-redirects@^1.14.0: + version "1.15.3" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" + integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== fragment-cache@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== dependencies: map-cache "^0.2.2" from2@^2.1.0: version "2.3.0" resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== dependencies: inherits "^2.0.1" readable-stream "^2.0.0" -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -1428,7 +1390,7 @@ fs-minipass@^2.0.0: fs-write-stream-atomic@^1.0.8: version "1.0.10" resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" - integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + integrity sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA== dependencies: graceful-fs "^4.1.2" iferr "^0.1.5" @@ -1438,7 +1400,7 @@ fs-write-stream-atomic@^1.0.8: fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@^1.2.7: version "1.2.13" @@ -1448,21 +1410,31 @@ fsevents@^1.2.7: bindings "^1.5.0" nan "^2.12.1" -fsevents@~2.1.2: - version "2.1.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" - integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== - fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== get-caller-file@^2.0.1: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" + integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== + dependencies: + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + get-source@^2.0.12: version "2.0.12" resolved "https://registry.yarnpkg.com/get-source/-/get-source-2.0.12.tgz#0b47d57ea1e53ce0d3a69f4f3d277eb8047da944" @@ -1474,28 +1446,16 @@ get-source@^2.0.12: get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== glob-parent@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" - integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA== dependencies: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@~5.1.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== - dependencies: - is-glob "^4.0.1" - glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -1509,14 +1469,14 @@ glob-to-regexp@^0.4.1: integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== glob@^7.1.3, glob@^7.1.4: - version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" - integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" - minimatch "^3.0.4" + minimatch "^3.1.1" once "^1.3.0" path-is-absolute "^1.0.0" @@ -1539,7 +1499,7 @@ global-modules@^2.0.0: global-prefix@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= + integrity sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg== dependencies: expand-tilde "^2.0.2" homedir-polyfill "^1.0.1" @@ -1564,25 +1524,49 @@ global@^4.4.0: min-document "^2.19.0" process "^0.11.10" -graceful-fs@^4.1.11, graceful-fs@^4.1.15: - version "4.2.4" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" -graceful-fs@^4.1.2: - version "4.2.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" - integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== + dependencies: + get-intrinsic "^1.2.2" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== dependencies: get-value "^2.0.3" has-values "^0.1.4" @@ -1591,7 +1575,7 @@ has-value@^0.3.1: has-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== dependencies: get-value "^2.0.6" has-values "^1.0.0" @@ -1600,12 +1584,12 @@ has-value@^1.0.0: has-values@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== has-values@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== dependencies: is-number "^3.0.0" kind-of "^4.0.0" @@ -1627,15 +1611,17 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -hasurl@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/hasurl/-/hasurl-1.0.0.tgz#e4c619097ae1e8fc906bee904ce47e94f5e1ea37" - integrity sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ== +hasown@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== + dependencies: + function-bind "^1.1.2" -hmac-drbg@^1.0.0: +hmac-drbg@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== dependencies: hash.js "^1.0.3" minimalistic-assert "^1.0.0" @@ -1648,30 +1634,20 @@ homedir-polyfill@^1.0.1: dependencies: parse-passwd "^1.0.0" -http-cache-semantics@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" - integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== - https-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== -ieee754@^1.1.13: +ieee754@^1.1.4: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ieee754@^1.1.4: - version "1.1.13" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" - integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== - iferr@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" - integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + integrity sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA== import-local@^2.0.0: version "2.0.0" @@ -1684,7 +1660,7 @@ import-local@^2.0.0: imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== infer-owner@^1.0.3: version "1.0.4" @@ -1694,7 +1670,7 @@ infer-owner@^1.0.3: inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" wrappy "1" @@ -1704,17 +1680,12 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= - inherits@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== -ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: +ini@^1.3.4, ini@^1.3.5: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== @@ -1724,24 +1695,17 @@ interpret@^1.4.0: resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== +is-accessor-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz#3223b10628354644b86260db29b3e693f5ceedd4" + integrity sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA== dependencies: - kind-of "^6.0.0" + hasown "^2.0.0" is-binary-path@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + integrity sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q== dependencies: binary-extensions "^1.0.0" @@ -1757,42 +1721,33 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== +is-data-descriptor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz#2109164426166d32ea38c405c1e0945d9e6a4eeb" + integrity sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw== dependencies: - kind-of "^6.0.0" + hasown "^2.0.0" is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + version "0.1.7" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.7.tgz#2727eb61fd789dcd5bdf0ed4569f551d2fe3be33" + integrity sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg== dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.3.tgz#92d27cb3cd311c4977a4db47df457234a13cb306" + integrity sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw== dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" + is-accessor-descriptor "^1.0.1" + is-data-descriptor "^1.0.1" is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== is-extendable@^1.0.1: version "1.0.1" @@ -1804,31 +1759,31 @@ is-extendable@^1.0.1: is-extglob@^2.1.0, is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== is-glob@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" - integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + integrity sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw== dependencies: is-extglob "^2.1.0" is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" - integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-number@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== dependencies: kind-of "^3.0.2" @@ -1852,29 +1807,29 @@ is-windows@^1.0.1, is-windows@^1.0.2: is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" - integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== dependencies: isarray "1.0.0" isobject@^3.0.0, isobject@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== json-parse-better-errors@^1.0.2: version "1.0.2" @@ -1887,55 +1842,59 @@ json-schema-traverse@^0.4.1: integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json5@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" - integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== dependencies: minimist "^1.2.0" +json5@^2.1.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: version "3.2.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== dependencies: is-buffer "^1.1.5" kind-of@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2: +kind-of@^6.0.2: version "6.0.3" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== -kleur@^4.1.5: - version "4.1.5" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" - integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== - loader-runner@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== -loader-utils@^1.0.2, loader-utils@^1.2.3, loader-utils@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== +loader-utils@^1.2.3, loader-utils@^1.4.0: + version "1.4.2" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" + integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== dependencies: big.js "^5.2.2" emojis-list "^3.0.0" json5 "^1.0.1" +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + locate-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" @@ -1944,11 +1903,6 @@ locate-path@^3.0.0: p-locate "^3.0.0" path-exists "^3.0.0" -lodash.sortby@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= - lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -1981,12 +1935,12 @@ make-dir@^2.0.0: map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== map-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== dependencies: object-visit "^1.0.0" @@ -2002,7 +1956,7 @@ md5.js@^1.3.4: memory-fs@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" - integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= + integrity sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ== dependencies: errno "^0.1.3" readable-stream "^2.0.1" @@ -2035,12 +1989,12 @@ micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: to-regex "^3.0.2" micromatch@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" - integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: - braces "^3.0.1" - picomatch "^2.0.5" + braces "^3.0.2" + picomatch "^2.3.1" miller-rabin@^4.0.0: version "4.0.1" @@ -2055,11 +2009,6 @@ mime@^3.0.0: resolved "https://registry.yarnpkg.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - min-document@^2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" @@ -2067,24 +2016,20 @@ min-document@^2.19.0: dependencies: dom-walk "^0.1.0" -miniflare@3.20230710.0: - version "3.20230710.0" - resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-3.20230710.0.tgz#8c140e87eb1d0bd594b45fbf476790f699234154" - integrity sha512-kVxJoJFeepK+rGJp9UN0D8d3sL6hjFbzd3qcLUUUKosp0ouoleOa6uPNK0b8fEBWWqFUD2W4V4ziN7UvXFB4pg== +miniflare@3.20231030.0: + version "3.20231030.0" + resolved "https://registry.yarnpkg.com/miniflare/-/miniflare-3.20231030.0.tgz#dc85683961e469df7dc4e5fcb1116d83e1b99e75" + integrity sha512-iCg1dNauUG+kNp7jizcNmV/1XFItuTDvD/6xIC34PrszgKxYCbBO2R72y5NEDJTwaqr5ohQI/320wuJ8GEe7nQ== dependencies: acorn "^8.8.0" acorn-walk "^8.2.0" - better-sqlite3 "^8.1.0" capnp-ts "^0.7.0" exit-hook "^2.2.1" glob-to-regexp "^0.4.1" - http-cache-semantics "^4.1.0" - kleur "^4.1.5" - set-cookie-parser "^2.6.0" source-map-support "0.5.21" stoppable "^1.1.0" - undici "^5.13.0" - workerd "1.20230710.0" + undici "^5.22.1" + workerd "1.20231030.0" ws "^8.11.0" youch "^3.2.2" zod "^3.20.6" @@ -2094,39 +2039,39 @@ minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== -minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: +minimalistic-crypto-utils@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== -minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== +minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" -minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== - -minimist@^1.2.3: +minimist@^1.2.0, minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== minipass@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" - integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" -minizlib@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.0.tgz#fd52c645301ef09a63a2c209697c294c6ce02cf3" - integrity sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA== +minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== dependencies: minipass "^3.0.0" yallist "^4.0.0" @@ -2155,22 +2100,22 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" -mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3: - version "0.5.5" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" - integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== +mkdirp@^0.5.1, mkdirp@^0.5.3: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== dependencies: - minimist "^1.2.5" + minimist "^1.2.6" + +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== move-concurrently@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" - integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + integrity sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ== dependencies: aproba "^1.1.1" copy-concurrently "^1.0.0" @@ -2182,7 +2127,7 @@ move-concurrently@^1.0.1: ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.2: version "2.1.2" @@ -2195,14 +2140,14 @@ mustache@^4.2.0: integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== nan@^2.12.1: - version "2.14.1" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" - integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== + version "2.18.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" + integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== nanoid@^3.3.3: - version "3.3.4" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" - integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== nanomatch@^1.2.9: version "1.2.13" @@ -2221,28 +2166,16 @@ nanomatch@^1.2.9: snapdragon "^0.8.1" to-regex "^3.0.1" -napi-build-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" - integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== - neo-async@^2.5.0, neo-async@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" - integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nice-try@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -node-abi@^3.3.0: - version "3.45.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" - integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== - dependencies: - semver "^7.3.5" - node-forge@^1: version "1.3.1" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" @@ -2280,7 +2213,7 @@ node-libs-browser@^2.2.1: normalize-path@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== dependencies: remove-trailing-separator "^1.0.1" @@ -2289,45 +2222,60 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= - object-copy@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== dependencies: copy-descriptor "^0.1.0" define-property "^0.2.5" kind-of "^3.0.3" +object-inspect@^1.9.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== dependencies: isobject "^3.0.0" +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== dependencies: isobject "^3.0.1" once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" os-browserify@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== p-limit@^2.0.0: version "2.3.0" @@ -2362,14 +2310,13 @@ parallel-transform@^1.1.0: inherits "^2.0.3" readable-stream "^2.1.5" -parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.5" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" - integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== +parse-asn1@^5.0.0, parse-asn1@^5.1.6: + version "5.1.6" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" + integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== dependencies: - asn1.js "^4.0.0" + asn1.js "^5.2.0" browserify-aes "^1.0.0" - create-hash "^1.1.0" evp_bytestokey "^1.0.0" pbkdf2 "^3.0.3" safe-buffer "^5.1.1" @@ -2377,12 +2324,12 @@ parse-asn1@^5.0.0, parse-asn1@^5.1.5: parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= + integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== path-browserify@0.0.1: version "0.0.1" @@ -2392,37 +2339,32 @@ path-browserify@0.0.1: path-dirname@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" - integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= - -path-to-regexp@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.1.0.tgz#0b18f88b7a0ce0bfae6a25990c909ab86f512427" - integrity sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw== + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== -path-to-regexp@^6.2.0: +path-to-regexp@^6.1.0, path-to-regexp@^6.2.0: version "6.2.1" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5" integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw== pbkdf2@^3.0.3: - version "3.1.1" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" - integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg== + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== dependencies: create-hash "^1.1.2" create-hmac "^1.1.4" @@ -2430,10 +2372,10 @@ pbkdf2@^3.0.3: safe-buffer "^5.0.1" sha.js "^2.4.8" -picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: - version "2.2.2" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pify@^4.0.1: version "4.0.1" @@ -2450,30 +2392,12 @@ pkg-dir@^3.0.0: posix-character-classes@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= - -prebuild-install@^7.1.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== - dependencies: - detect-libc "^2.0.0" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.3" - mkdirp-classic "^0.5.3" - napi-build-utils "^1.0.1" - node-abi "^3.3.0" - pump "^3.0.0" - rc "^1.2.7" - simple-get "^4.0.0" - tar-fs "^2.0.0" - tunnel-agent "^0.6.0" + integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== prettier@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" - integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== printable-characters@^1.0.42: version "1.0.42" @@ -2488,17 +2412,17 @@ process-nextick-args@~2.0.0: process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== promise-inflight@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" - integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= + integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== public-encrypt@^4.0.0: version "4.0.3" @@ -2537,30 +2461,27 @@ pumpify@^1.3.3: inherits "^2.0.3" pump "^2.0.0" -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= - -punycode@^1.2.4: +punycode@^1.2.4, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +qs@^6.11.2: + version "6.11.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" + integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== + dependencies: + side-channel "^1.0.4" querystring-es3@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" - integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: version "2.1.0" @@ -2577,20 +2498,10 @@ randomfill@^1.0.3: randombytes "^2.0.5" safe-buffer "^5.1.0" -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -2600,7 +2511,7 @@ rc@^1.2.7: string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.1.1, readable-stream@^3.4.0: +readable-stream@^3.6.0, readable-stream@^3.6.2: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -2609,15 +2520,6 @@ readable-stream@^3.1.1, readable-stream@^3.4.0: string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - readdirp@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" @@ -2627,13 +2529,6 @@ readdirp@^2.2.1: micromatch "^3.1.10" readable-stream "^2.0.2" -readdirp@~3.4.0: - version "3.4.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" - integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== - dependencies: - picomatch "^2.2.1" - readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -2652,22 +2547,22 @@ regex-not@^1.0.0, regex-not@^1.0.2: remove-trailing-separator@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== repeat-element@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + version "1.1.4" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-main-filename@^2.0.0: version "2.0.0" @@ -2677,14 +2572,14 @@ require-main-filename@^2.0.0: resolve-cwd@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + integrity sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg== dependencies: resolve-from "^3.0.0" resolve-dir@^1.0.0, resolve-dir@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= + integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg== dependencies: expand-tilde "^2.0.0" global-modules "^1.0.0" @@ -2692,12 +2587,17 @@ resolve-dir@^1.0.0, resolve-dir@^1.0.1: resolve-from@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" - integrity sha1-six699nWiBvItuZTM17rywoYh0g= + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== + +resolve.exports@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== ret@~0.1.10: version "0.1.15" @@ -2711,7 +2611,7 @@ rimraf@^2.5.4, rimraf@^2.6.3: dependencies: glob "^7.1.3" -rimraf@^3.0.0: +rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -2752,11 +2652,11 @@ rollup-pluginutils@^2.8.1: run-queue@^1.0.0, run-queue@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" - integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + integrity sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg== dependencies: aproba "^1.1.1" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -2769,10 +2669,15 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: safe-regex@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== dependencies: ret "~0.1.10" +safer-buffer@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + schema-utils@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" @@ -2783,45 +2688,46 @@ schema-utils@^1.0.0: ajv-keywords "^3.1.0" selfsigned@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.0.1.tgz#8b2df7fa56bf014d19b6007655fff209c0ef0a56" - integrity sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ== + version "2.4.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== dependencies: + "@types/node-forge" "^1.3.0" node-forge "^1" semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== -semver@^7.3.5: +semver@^7.3.4: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -serialize-javascript@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" - integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== +serialize-javascript@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" + integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== dependencies: randombytes "^2.1.0" set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-cookie-parser@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz#131921e50f62ff1a66a461d7d62d7b21d5d15a51" - integrity sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ== +set-function-length@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed" + integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ== + dependencies: + define-data-property "^1.1.1" + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" set-value@^2.0.0, set-value@^2.0.1: version "2.0.1" @@ -2836,7 +2742,7 @@ set-value@^2.0.0, set-value@^2.0.1: setimmediate@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== sha.js@^2.4.0, sha.js@^2.4.8: version "2.4.11" @@ -2849,28 +2755,23 @@ sha.js@^2.4.0, sha.js@^2.4.8: shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== dependencies: shebang-regex "^1.0.0" shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== -simple-get@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" - integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" snapdragon-node@^2.0.1: version "2.1.1" @@ -2918,7 +2819,7 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@0.5.21: +source-map-support@0.5.21, source-map-support@~0.5.12: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== @@ -2926,33 +2827,20 @@ source-map-support@0.5.21: buffer-from "^1.0.0" source-map "^0.6.0" -source-map-support@~0.5.12: - version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - source-map-url@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= - -source-map@^0.5.6: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + version "0.4.1" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== sourcemap-codec@^1.4.8: version "1.4.8" @@ -2967,9 +2855,9 @@ split-string@^3.0.1, split-string@^3.0.2: extend-shallow "^3.0.0" ssri@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" - integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + version "6.0.2" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" + integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== dependencies: figgy-pudding "^3.5.1" @@ -2984,7 +2872,7 @@ stacktracey@^2.1.8: static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== dependencies: define-property "^0.2.5" object-copy "^0.1.0" @@ -3026,11 +2914,6 @@ stream-shift@^1.0.0: resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== -streamsearch@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" - integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== - string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" @@ -3061,11 +2944,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -3080,63 +2958,49 @@ supports-color@^6.1.0: dependencies: has-flag "^3.0.0" +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + tapable@^1.0.0, tapable@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tar-fs@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== +tar@^6.1.10: + version "6.2.0" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.0.tgz#b14ce49a79cb1cd23bc9b016302dea5474493f73" + integrity sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ== dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^5.0.5: - version "5.0.5" - resolved "https://registry.yarnpkg.com/tar/-/tar-5.0.5.tgz#03fcdb7105bc8ea3ce6c86642b9c942495b04f93" - integrity sha512-MNIgJddrV2TkuwChwcSNds/5E9VijOiw7kAc1y5hTNJoLDSuIyid2QtLYiCYNnICebpuvjhPQZsXwUL0O3l7OQ== - dependencies: - chownr "^1.1.3" + chownr "^2.0.0" fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.0" - mkdirp "^0.5.0" + minipass "^5.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" yallist "^4.0.0" terser-webpack-plugin@^1.4.3: - version "1.4.4" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" - integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== + version "1.4.5" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" + integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== dependencies: cacache "^12.0.2" find-cache-dir "^2.1.0" is-wsl "^1.1.0" schema-utils "^1.0.0" - serialize-javascript "^3.1.0" + serialize-javascript "^4.0.0" source-map "^0.6.1" terser "^4.1.2" webpack-sources "^1.4.0" worker-farm "^1.7.0" terser@^4.1.2: - version "4.8.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" - integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== + version "4.8.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.1.tgz#a00e5634562de2239fd404c649051bf6fc21144f" + integrity sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw== dependencies: commander "^2.20.0" source-map "~0.6.1" @@ -3151,9 +3015,9 @@ through2@^2.0.0: xtend "~4.0.1" timers-browserify@^2.0.4: - version "2.0.11" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" - integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== + version "2.0.12" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" + integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== dependencies: setimmediate "^1.0.4" @@ -3167,19 +3031,19 @@ tiny-request-router@^1.2.2: to-arraybuffer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" - integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + integrity sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA== to-object-path@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== dependencies: kind-of "^3.0.2" to-regex-range@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== dependencies: is-number "^3.0.0" repeat-string "^1.6.1" @@ -3201,62 +3065,48 @@ to-regex@^3.0.1, to-regex@^3.0.2: regex-not "^1.0.2" safe-regex "^1.1.0" -tr46@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= - dependencies: - punycode "^2.1.0" - ts-loader@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-8.0.1.tgz#9670dcbce2a8c8506d01a37fee042350d02c8c21" - integrity sha512-I9Nmly0ufJoZRMuAT9d5ijsC2B7oSPvUnOJt/GhgoATlPGYfa17VicDKPcqwUCrHpOkCxr/ybLYwbnS4cOxmvQ== + version "8.4.0" + resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-8.4.0.tgz#e845ea0f38d140bdc3d7d60293ca18d12ff2720f" + integrity sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw== dependencies: - chalk "^2.3.0" + chalk "^4.1.0" enhanced-resolve "^4.0.0" - loader-utils "^1.0.2" + loader-utils "^2.0.0" micromatch "^4.0.0" - semver "^6.0.0" - -tslib@^1.9.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" - integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== + semver "^7.3.4" tslib@^2.2.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.0.tgz#b295854684dbda164e181d259a22cd779dcd7bc3" - integrity sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA== + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" - integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" + integrity sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw== typedarray@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== typescript@^3.9.7: - version "3.9.7" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" - integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== + version "3.9.10" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" + integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== -undici@^5.13.0: - version "5.22.1" - resolved "https://registry.yarnpkg.com/undici/-/undici-5.22.1.tgz#877d512effef2ac8be65e695f3586922e1a57d7b" - integrity sha512-Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw== +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + +undici@^5.22.1: + version "5.27.2" + resolved "https://registry.yarnpkg.com/undici/-/undici-5.27.2.tgz#a270c563aea5b46cc0df2550523638c95c5d4411" + integrity sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ== dependencies: - busboy "^1.6.0" + "@fastify/busboy" "^2.0.0" union-value@^1.0.0: version "1.0.1" @@ -3282,18 +3132,10 @@ unique-slug@^2.0.0: dependencies: imurmurhash "^0.1.4" -universal-url@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universal-url/-/universal-url-2.0.0.tgz#35e7fc2c3374804905cee67ea289ed3a47669809" - integrity sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg== - dependencies: - hasurl "^1.0.0" - whatwg-url "^7.0.0" - unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== dependencies: has-value "^0.3.1" isobject "^3.0.0" @@ -3304,24 +3146,24 @@ upath@^1.1.1: integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== uri-js@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" - integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" urix@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + version "0.11.3" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.3.tgz#6f495f4b935de40ce4a0a52faee8954244f3d3ad" + integrity sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw== dependencies: - punycode "1.3.2" - querystring "0.2.0" + punycode "^1.4.1" + qs "^6.11.2" use@^3.1.0: version "3.1.1" @@ -3331,14 +3173,14 @@ use@^3.1.0: util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util@0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= +util@^0.10.4: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== dependencies: - inherits "2.0.1" + inherits "2.0.3" util@^0.11.0: version "0.11.1" @@ -3348,37 +3190,32 @@ util@^0.11.0: inherits "2.0.3" v8-compile-cache@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" - integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== + version "2.4.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz#cdada8bec61e15865f05d097c5f4fd30e94dc128" + integrity sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== -watchpack-chokidar2@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" - integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== +watchpack-chokidar2@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957" + integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== dependencies: chokidar "^2.1.8" -watchpack@^1.6.1: - version "1.7.2" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" - integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== +watchpack@^1.7.4: + version "1.7.5" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453" + integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== dependencies: graceful-fs "^4.1.2" neo-async "^2.5.0" optionalDependencies: - chokidar "^3.4.0" - watchpack-chokidar2 "^2.0.0" - -webidl-conversions@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + chokidar "^3.4.1" + watchpack-chokidar2 "^2.0.1" webpack-cli@^3.3.12: version "3.3.12" @@ -3406,9 +3243,9 @@ webpack-sources@^1.4.0, webpack-sources@^1.4.1: source-map "~0.6.1" webpack@^4.43.0: - version "4.43.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6" - integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g== + version "4.47.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.47.0.tgz#8b8a02152d7076aeb03b61b47dad2eeed9810ebc" + integrity sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ== dependencies: "@webassemblyjs/ast" "1.9.0" "@webassemblyjs/helper-module-context" "1.9.0" @@ -3418,7 +3255,7 @@ webpack@^4.43.0: ajv "^6.10.2" ajv-keywords "^3.4.1" chrome-trace-event "^1.0.2" - enhanced-resolve "^4.1.0" + enhanced-resolve "^4.5.0" eslint-scope "^4.0.3" json-parse-better-errors "^1.0.2" loader-runner "^2.4.0" @@ -3431,22 +3268,13 @@ webpack@^4.43.0: schema-utils "^1.0.0" tapable "^1.1.3" terser-webpack-plugin "^1.4.3" - watchpack "^1.6.1" + watchpack "^1.7.4" webpack-sources "^1.4.1" -whatwg-url@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== - dependencies: - lodash.sortby "^4.7.0" - tr46 "^1.0.1" - webidl-conversions "^4.0.2" - which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== which@^1.2.14, which@^1.2.9, which@^1.3.1: version "1.3.1" @@ -3462,33 +3290,35 @@ worker-farm@^1.7.0: dependencies: errno "~0.1.7" -workerd@1.20230710.0: - version "1.20230710.0" - resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20230710.0.tgz#7e404cb75fa6c1ffcbff0e9211704feab80bc738" - integrity sha512-4iC+8w3UNixJ+b6GA2VOG2B6rnfSbSnm7Fnvsvq9iJuolG34fnD9xrfaXu6oN7H3Wyby3z8OIm0fy3szTvuRcg== +workerd@1.20231030.0: + version "1.20231030.0" + resolved "https://registry.yarnpkg.com/workerd/-/workerd-1.20231030.0.tgz#937588da16a3fa9cc73375c1e6967d02610ee367" + integrity sha512-+FSW+d31f8RrjHanFf/R9A+Z0csf3OtsvzdPmAKuwuZm/5HrBv83cvG9fFeTxl7/nI6irUUXIRF9xcj/NomQzQ== optionalDependencies: - "@cloudflare/workerd-darwin-64" "1.20230710.0" - "@cloudflare/workerd-darwin-arm64" "1.20230710.0" - "@cloudflare/workerd-linux-64" "1.20230710.0" - "@cloudflare/workerd-linux-arm64" "1.20230710.0" - "@cloudflare/workerd-windows-64" "1.20230710.0" + "@cloudflare/workerd-darwin-64" "1.20231030.0" + "@cloudflare/workerd-darwin-arm64" "1.20231030.0" + "@cloudflare/workerd-linux-64" "1.20231030.0" + "@cloudflare/workerd-linux-arm64" "1.20231030.0" + "@cloudflare/workerd-windows-64" "1.20231030.0" -wrangler@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-3.2.0.tgz#1f1336b2b4266281becc79b74e5a0abba8b86525" - integrity sha512-Fne5c91uolV4+E0B60F/meWbD/sr/oSPBfr6x1gapu6I7Ipu5uUt29K/fuGRgXRQcVVKnd5k3fS++ruuLODoxA== +wrangler@^3.15.0: + version "3.16.0" + resolved "https://registry.yarnpkg.com/wrangler/-/wrangler-3.16.0.tgz#92d8efe03d751dc486015a116d7dd2efa855e1ba" + integrity sha512-MIx35sSdFKE3hnfWB6xWUnrt3OiyKK+PQnc9kFLjksLESX0tLmEk1gdvThYHliY90kkelS+nbH48SUGTFAI5BA== dependencies: "@cloudflare/kv-asset-handler" "^0.2.0" - "@esbuild-plugins/node-globals-polyfill" "^0.1.1" - "@esbuild-plugins/node-modules-polyfill" "^0.1.4" + "@esbuild-plugins/node-globals-polyfill" "^0.2.3" + "@esbuild-plugins/node-modules-polyfill" "^0.2.2" blake3-wasm "^2.1.5" chokidar "^3.5.3" - esbuild "0.16.3" - miniflare "3.20230710.0" + esbuild "0.17.19" + miniflare "3.20231030.0" nanoid "^3.3.3" path-to-regexp "^6.2.0" + resolve.exports "^2.0.2" selfsigned "^2.0.1" - source-map "^0.7.4" + source-map "0.6.1" + source-map-support "0.5.21" xxhash-wasm "^1.0.1" optionalDependencies: fsevents "~2.3.2" @@ -3505,12 +3335,12 @@ wrap-ansi@^5.1.0: wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== ws@^8.11.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + version "8.14.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" + integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" @@ -3518,14 +3348,14 @@ xtend@^4.0.0, xtend@~4.0.1: integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== xxhash-wasm@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-1.0.1.tgz#8a0f0eeb3ab76c16bbb889f5acca286b62d98626" - integrity sha512-Lc9CTvDrH2vRoiaUzz25q7lRaviMhz90pkx6YxR9EPYtF99yOJnv2cB+CQ0hp/TLoqrUsk8z/W2EN31T568Azw== + version "1.0.2" + resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-1.0.2.tgz#ecc0f813219b727af4d5f3958ca6becee2f2f1ff" + integrity sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A== y18n@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" - integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== yallist@^3.0.2: version "3.1.1" @@ -3562,15 +3392,15 @@ yargs@^13.3.2: yargs-parser "^13.1.2" youch@^3.2.2: - version "3.2.3" - resolved "https://registry.yarnpkg.com/youch/-/youch-3.2.3.tgz#63c94ea504950a1a5bf1d5969439addba6c726e2" - integrity sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw== + version "3.3.3" + resolved "https://registry.yarnpkg.com/youch/-/youch-3.3.3.tgz#50cfdf5bc395ce664a5073e31b712ff4a859d928" + integrity sha512-qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA== dependencies: cookie "^0.5.0" mustache "^4.2.0" stacktracey "^2.1.8" zod@^3.20.6: - version "3.21.4" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db" - integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw== + version "3.22.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.4.tgz#f31c3a9386f61b1f228af56faa9255e845cf3fff" + integrity sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg== From 59cb7c51ddf9bcd445fb7a7dafa33d50934a4af4 Mon Sep 17 00:00:00 2001 From: Jan Zheng Date: Tue, 21 Nov 2023 09:05:28 +1100 Subject: [PATCH 24/24] upped the default limit --- src/routes/collection.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/collection.ts b/src/routes/collection.ts index a2501eb..b304207 100644 --- a/src/routes/collection.ts +++ b/src/routes/collection.ts @@ -108,7 +108,7 @@ export async function collectionRoute(req: HandlerRequest) { const pageId = parsePageId(req.params.pageId); const viewName = req.searchParams.get("view"); // collection view - const limit = Number(req.searchParams.get("limit")) || 150; // collection view + const limit = Number(req.searchParams.get("limit")) || 999; // collection view const page = await fetchPageById(pageId!, req.notionToken); const pageBlock = page.recordMap.block[pageId!]; let payload: string|null = req.searchParams.get("payload"); // ["rows", "columns"] etc. — array of keys to be returned; will return EVERYTHING if left empty @@ -174,8 +174,8 @@ export async function collectionRoute(req: HandlerRequest) { - let query_filter = collectionView.value?.['query2']?.filter ? collectionView.value?.['query2'].filter : {} - let query_sort = collectionView.value?.['query2'].sort ? collectionView.value?.['query2'].sort : {} + let query_filter = collectionView.value?.['query2']?.filter ? collectionView.value?.['query2']?.filter : {} + let query_sort = collectionView.value?.['query2']?.sort ? collectionView.value?.['query2']?.sort : [] if (collectionView.value?.format.property_filters) { if (!query_filter.filters)